Guest User

Untitled

a guest
Jan 12th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class HelloController(val service: HelloService) {
  2. init {
  3. get("/hello") {
  4. service.sayHello()
  5. }
  6. }
  7. }
Add Comment
Please, Sign In to add comment