14 lines
243 B
Kotlin
14 lines
243 B
Kotlin
package top.OrangeRoll
|
|
|
|
import io.ktor.server.application.Application
|
|
|
|
/**
|
|
* Ktor's YAML module entry point.
|
|
*/
|
|
fun Application.module() {
|
|
configureDatabase()
|
|
bootstrapAdministrator()
|
|
configureSecurity()
|
|
configureRouting()
|
|
}
|