template: ktor app

This commit is contained in:
DarkCat09 2024-06-21 15:22:05 +04:00
commit 65fbbdfbe8
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3
14 changed files with 483 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package su.coolpeople.plugins
import io.ktor.server.application.*
import io.ktor.server.response.*
import io.ktor.server.routing.*
fun Application.configureRouting() {
routing {
get("/") {
call.respondText("Hello World!")
}
}
}