summaryrefslogtreecommitdiff
path: root/src/main/java/net/geedge
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/geedge')
-rw-r--r--src/main/java/net/geedge/confagent/ConfagentApplication.java13
1 files changed, 13 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);
+ }
+
+}