19 lines
570 B
Java
19 lines
570 B
Java
package com.tongran.agentserver;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@SpringBootApplication
|
|
@ComponentScan(basePackages = {"com.tongran.agentserver", "cn.hutool.extra.spring"})
|
|
@EnableScheduling
|
|
public class AgentServerApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AgentServerApplication.class, args);
|
|
}
|
|
|
|
|
|
}
|