25 lines
661 B
Java
25 lines
661 B
Java
package tech.easyflow.manuagent;
|
|
|
|
import tech.easyflow.manuagent.config.AppProperties;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
|
|
|
/**
|
|
* 智造申报 Agent 服务入口。
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableConfigurationProperties(AppProperties.class)
|
|
public class ManuAgentApplication {
|
|
|
|
/**
|
|
* 启动 Spring Boot 应用。
|
|
*
|
|
* @param args 命令行参数
|
|
*/
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ManuAgentApplication.class, args);
|
|
}
|
|
}
|
|
|