2025-06-27 10:23:57 +08:00
|
|
|
package com.fuyuanshen.snailjob;
|
2025-06-27 09:08:28 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|