13 lines
266 B
Kotlin
13 lines
266 B
Kotlin
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!")
|
|
}
|
|
}
|
|
}
|