zzj37

Results 3 comments of zzj37

Maybe the hierarchical structure need some specifications of some sort of "context" or "scoping"? I find each SubRoute implemented by inheriting `Kooby` class and mounted by `mount()` method needs to...

It only happens when calling `coroutine` within the SubRouter. ```kotlin class RouterWithoutWorker : Kooby({ coroutine { get("/without-worker") { "Without worker!" } } }) class RouterWithoutWorkerNoCoroutine : Kooby({ get("/without-worker-no-coroutine") { "Without...

I hope future work would keep providing meta data about the routes or controllers. Right now with the MVC API, it's easy to find the controller method by calling `Route.getMvcMethod()`....