Add SQL migrations

This commit is contained in:
2020-04-12 00:08:20 +02:00
parent b87a5c3744
commit 8a6d93c51a
4 changed files with 36 additions and 1 deletions
+6
View File
@@ -1,10 +1,16 @@
package be.vandewalleh.features
import io.ktor.application.Application
import org.kodein.di.Kodein
import org.kodein.di.KodeinAware
fun Application.features() {
locationFeature()
corsFeature()
contentNegotiationFeature()
configurationFeature()
}
abstract class Feature(override val kodein: Kodein) : KodeinAware {
abstract fun execute(): Unit
}