aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java
diff options
context:
space:
mode:
Diffstat (limited to 'example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java')
-rw-r--r--example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java b/example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java
new file mode 100644
index 0000000..b00b2e1
--- /dev/null
+++ b/example-spring-boot/src/main/java/org/onap/boot/example/demo/SpringBootApp.java
@@ -0,0 +1,13 @@
+package org.onap.boot.example.demo;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringBootApp {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringBootApp.class, args);
+ }
+}
+