2025-09-10 15:36:49 +08:00
|
|
|
package com.tongran.agent.client;
|
|
|
|
|
|
|
|
|
|
import com.tongran.agent.client.core.config.GlobalConfig;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2025-10-21 14:16:25 +08:00
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2025-09-10 15:36:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2025-10-21 14:16:25 +08:00
|
|
|
@ComponentScan(basePackages = {"com.tongran.agent.client", "cn.hutool.extra.spring"})
|
2025-09-10 15:36:49 +08:00
|
|
|
public class TrAgentClientApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
GlobalConfig.startupTime = System.currentTimeMillis();
|
|
|
|
|
SpringApplication.run(TrAgentClientApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|