problem: not configurable from command line

This commit is contained in:
Igor Artamonov
2019-06-12 23:44:30 -04:00
parent 50dba65d21
commit 6681810f59

View File

@@ -10,5 +10,5 @@ open class Starter
fun main(args: Array<String>) { fun main(args: Array<String>) {
val app = SpringApplication(Starter::class.java) val app = SpringApplication(Starter::class.java)
app.run() app.run(*args)
} }