aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt')
-rw-r--r--src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt b/src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt
new file mode 100644
index 0000000..b6d7f4c
--- /dev/null
+++ b/src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt
@@ -0,0 +1,11 @@
+package io.jamesbarnett.redditlite
+
+import org.springframework.boot.autoconfigure.SpringBootApplication
+import org.springframework.boot.runApplication
+
+@SpringBootApplication
+class RedditLiteApplication
+
+fun main(args: Array<String>) {
+ runApplication<RedditLiteApplication>(*args)
+}