You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
280 B
12 lines
280 B
|
2 years ago
|
package com.example.liquibase
|
||
|
|
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
||
|
|
import org.springframework.boot.runApplication
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
class LiquibaseApplication
|
||
|
|
|
||
|
|
fun main(args: Array<String>) {
|
||
|
|
runApplication<LiquibaseApplication>(*args)
|
||
|
|
}
|