9 lines
187 B
Kotlin
9 lines
187 B
Kotlin
package eventDemo.contexts.auth.infrastructure.configure
|
|
|
|
import io.ktor.server.application.Application
|
|
|
|
fun Application.configureAuth() {
|
|
configureKtorAuth()
|
|
configureAuthRoutes()
|
|
}
|