12 lines
373 B
Kotlin
12 lines
373 B
Kotlin
package com.baeldung.springbootkotlin
|
|
|
|
import org.springframework.boot.SpringApplication
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
|
|
|
@SpringBootApplication(scanBasePackages = arrayOf("com.baeldung.springbootkotlin"))
|
|
class KotlinDemoApplication
|
|
|
|
fun main(args: Array<String>) {
|
|
SpringApplication.run(KotlinDemoApplication::class.java, *args)
|
|
}
|