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
2022-07-19 16:55:02 +08:00

16 lines
492 B
Java

package net.geedge.confagent;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.PropertySource;
@SpringBootApplication
@PropertySource(value = { "classpath:version.properties" }, encoding = "utf-8", ignoreResourceNotFound = true)
public class ConfagentApplication {
public static void main(String[] args) {
SpringApplication.run(ConfagentApplication.class, args);
}
}