Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

programadorthi/kotlin-routing

Repository files navigation

Kotlin Routing

A multiplatform, extensible, and independent routing library powered by Ktor. Create routing independently and extend it to what you need.

Core module

The core module is the Ktor routing engine modified to be "server" and "client". It is abstract and ready to extend. Using core module you can:

val router = routing {
 route(path = "/hello") {
 handle {
 // Handle the call to the routing "/login"
 }
 }
}
// And to call login routing...
router.call(uri = "/hello")

For more information check the Wiki pages.

AltStyle によって変換されたページ (->オリジナル) /