you could do this with shared handler for your rou...
# ktor
e
you could do this with shared handler for your routes
Copy code
fun Route.myHandler(): Unit = TODO()
        
        route("/success", Post, Route::myHandler)
        route("/pending", Post, Route::myHandler)
or write interceptor for complex routing