Fix: backward compatibility with the auto updater launcher

This commit is contained in:
Laurent Clouet
2025-01-22 17:59:50 +01:00
parent 5ffd30dd50
commit 8a2d53f36f

View File

@@ -0,0 +1,10 @@
package com.sheepit.client.standalone;
/**
* For backward compatibility with the auto updater launcher
*/
public class Worker {
public static void main(String[] args) {
com.sheepit.client.main.Worker.main(args);
}
}