This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nz-talon/src/main/java/net/geedge/confagent/ConfagentApplication.java

14 lines
319 B
Java
Raw Normal View History

2021-07-09 17:01:27 +08:00
package net.geedge.confagent;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ConfagentApplication {
public static void main(String[] args) {
SpringApplication.run(ConfagentApplication.class, args);
}
}