Skip to content

Commit

Permalink
fix : main 메서드는 static
Browse files Browse the repository at this point in the history
  • Loading branch information
Due-IT committed Sep 24, 2024
1 parent f9ac5b2 commit bbe1235
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wabi/src/main/kotlin/com/wap/wabi/WabiApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class WabiApplication {
fun started() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"))
}
}

fun main(args: Array<String>) {
runApplication<WabiApplication>(*args)
}
fun main(args: Array<String>) {
runApplication<WabiApplication>(*args)
}

0 comments on commit bbe1235

Please sign in to comment.