18 lines
558 B
Kotlin
18 lines
558 B
Kotlin
package com.betriebsratkanzlei.legalconsenthub
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
|
import org.springframework.boot.runApplication
|
|
import org.springframework.data.jpa.repository.config.EnableJpaAuditing
|
|
import org.springframework.scheduling.annotation.EnableAsync
|
|
import org.springframework.scheduling.annotation.EnableScheduling
|
|
|
|
@SpringBootApplication
|
|
@EnableJpaAuditing
|
|
@EnableAsync
|
|
@EnableScheduling
|
|
class LegalconsenthubApplication
|
|
|
|
fun main(args: Array<String>) {
|
|
runApplication<LegalconsenthubApplication>(*args)
|
|
}
|