Create class based routing for Ktor
Avoid writing out functions and declaring routing verbs in dsl!
See the project website for documentation and APIs
// Create your class based view to handle all your required HTTP methods
@Ktorceful
@Resource("user")
class UserRoute: Get, Post, Delete {
override suspend fun get(call: RoutingCall) {
// ...
}
override suspend fun post(call: RoutingCall) {
// ...
}
override suspend fun delete(call: RoutingCall) {
// ...
}
}
fun Application.module() {
install(Resources)
// ...
allKtorcefulRoutes() // You can call this once for all routes!
}
Any future changes to your route can all be done within your class!