Merge branch 'fix/backward-compatibility' into 'master'

Fix: backward compatibility with the auto updater launcher

See merge request sheepitrenderfarm/client!363
This commit is contained in:
Sheepit Renderfarm
2025-01-22 17:06:29 +00:00

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);
}
}