Guest User

Untitled

a guest
Dec 12th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package io.github.gedorinku.ktorapp
  2.  
  3. import io.ktor.application.Application
  4. import io.ktor.application.call
  5. import io.ktor.response.respondText
  6. import io.ktor.routing.get
  7. import io.ktor.routing.routing
  8.  
  9. /**
  10. * Created by gedorinku on 2017/12/09.
  11. */
  12. fun Application.sampleApplication() {
  13. routing {
  14. get("/") {
  15. call.respondText("Hello")
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment