template: ktor app
This commit is contained in:
commit
65fbbdfbe8
14 changed files with 483 additions and 0 deletions
13
src/main/kotlin/su/coolpeople/plugins/Routing.kt
Normal file
13
src/main/kotlin/su/coolpeople/plugins/Routing.kt
Normal 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!")
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue