12 lines
248 B
Kotlin
12 lines
248 B
Kotlin
package be.vandewalleh.features
|
|
|
|
import be.vandewalleh.auth.authenticationModule
|
|
import io.ktor.application.Application
|
|
|
|
fun Application.features() {
|
|
corsFeature()
|
|
contentNegotiationFeature()
|
|
authenticationModule()
|
|
handleErrors()
|
|
}
|