!535 feat: EasyRetry-v3.2.0 => SnailJob-v1.0.0beta1

* feat: EasyRetry-v3.2.0 => SnailJob-v1.0.0beta1
This commit is contained in:
dhb52
2024-05-17 01:54:18 +00:00
committed by 疯狂的狮子Li
parent 416ca05be4
commit ef57259386
38 changed files with 3696 additions and 3711 deletions

View File

@ -0,0 +1,19 @@
package org.dromara.snailjob;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* SnailJob Server 启动程序
*
* @author opensnail
* @date 2024-05-17
*/
@SpringBootApplication
public class SnailJobServerApplication {
public static void main(String[] args) {
SpringApplication.run(com.aizuda.snailjob.server.SnailJobServerApplication.class, args);
}
}