Files
agent-server/src/main/java/com/tongran/agentserver/AgentServerApplication.java
T

18 lines
486 B
Java
Raw Normal View History

2025-08-20 16:52:23 +08:00
package com.tongran.agentserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
2025-08-26 13:00:30 +08:00
import org.springframework.context.annotation.ComponentScan;
2025-08-20 16:52:23 +08:00
@SpringBootApplication
2025-08-26 13:00:30 +08:00
@ComponentScan(basePackages = {"com.tongran.agentserver", "cn.hutool.extra.spring"})
2025-08-20 16:52:23 +08:00
public class AgentServerApplication {
public static void main(String[] args) {
SpringApplication.run(AgentServerApplication.class, args);
}
2025-08-26 13:00:30 +08:00
2025-08-20 16:52:23 +08:00
}