Created
April 7, 2013 11:36
-
-
Save hhariri/5330134 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val server = AppServer() | |
Routes.get("/good",{ response.send("Well this means that routes now work!")}) | |
Routes.get("/",{ response.send("Hello, how are you")}) | |
"/customer" post { response.send("abc") } | |
server.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment