diff options
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/java/net/geedge/confagent/ConfagentApplication.java | 13 | ||||
| -rw-r--r-- | src/main/resources/application.properties | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/net/geedge/confagent/ConfagentApplication.java b/src/main/java/net/geedge/confagent/ConfagentApplication.java new file mode 100644 index 0000000..18887c5 --- /dev/null +++ b/src/main/java/net/geedge/confagent/ConfagentApplication.java @@ -0,0 +1,13 @@ +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); + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ + |
