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

16 lines
492 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;
import org.springframework.context.annotation.PropertySource;
2021-07-09 17:01:27 +08:00
@SpringBootApplication
@PropertySource(value = { "classpath:version.properties" }, encoding = "utf-8", ignoreResourceNotFound = true)
2021-07-09 17:01:27 +08:00
public class ConfagentApplication {
public static void main(String[] args) {
SpringApplication.run(ConfagentApplication.class, args);
}
}