From 78400d587ea5367d3424333913ff4f94ca3f1908 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Fri, 10 Apr 2020 13:34:23 +0100 Subject: Reimplement in Kotlin --- .../io/jamesbarnett/redditlite/RedditLiteApplication.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt (limited to 'src/main/kotlin/io/jamesbarnett/redditlite/RedditLiteApplication.kt') 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) { + runApplication(*args) +} -- cgit v1.2.3