diff options
Diffstat (limited to 'src')
3 files changed, 27 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 @@ + diff --git a/src/test/java/net/geedge/confagent/ConfagentApplicationTests.java b/src/test/java/net/geedge/confagent/ConfagentApplicationTests.java new file mode 100644 index 0000000..ab3a794 --- /dev/null +++ b/src/test/java/net/geedge/confagent/ConfagentApplicationTests.java @@ -0,0 +1,13 @@ +package net.geedge.confagent; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class ConfagentApplicationTests { + + @Test + void contextLoads() { + } + +} |
