commonMain.me.nathanfallet.ktorx.routers.IRouter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktor-routers-jvm Show documentation
Show all versions of ktor-routers-jvm Show documentation
Generic routers for Ktor projects.
package me.nathanfallet.ktorx.routers
import io.ktor.server.routing.*
import io.swagger.v3.oas.models.OpenAPI
interface IRouter {
fun createRoutes(root: Route, openAPI: OpenAPI? = null)
}