Yonatan Karp-Rudin
06/01/2024, 9:14 PMfun Application.configureRouting() {
routing {
get("/") {
call.respondText("Hello World!")
}
}
}
This is nice and all, but it means that ones the API is evolve I cannot just simply regenerate the code and implement it.
I've though about this topic alot (mainly about how can the openapi generator be evolved) but I'm not sure if I have any good ideas at this point as Ktor is fully based on extension functions and DSLs so you cannot just define the interfaces sad panda
I'd be happy to hear any thoughts ! 🙏