sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/SodaLiveApplication.kt

16 lines
424 B
Kotlin

package kr.co.vividnext.sodalive
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
import org.springframework.retry.annotation.EnableRetry
import org.springframework.scheduling.annotation.EnableAsync
@SpringBootApplication
@EnableAsync
@EnableRetry
class SodaLiveApplication
fun main(args: Array<String>) {
runApplication<SodaLiveApplication>(*args)
}