Created
July 7, 2014 16:36
-
-
Save AdamMagaluk/32da6245bf5d2462f978 to your computer and use it in GitHub Desktop.
Argo
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
//Works... | |
var app = argo(); | |
app.use(titan) | |
.add(RootResource, runtime) | |
.add(DevicesResource, runtime) | |
.add(ServerResource, runtime, 123) | |
.listen(3000) | |
/// Doesn't work? | |
var app = argo(); | |
app.use(titan); | |
app.add(RootResource, runtime); | |
app.add(DevicesResource, runtime); | |
app.add(ServerResource, runtime, 123); | |
app.listen(3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment