Created
August 23, 2018 20:37
-
-
Save k1r0s/1f8d400a44aff8e1c1d5b2a78d502f62 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
| import { setAdapter } from "@ritley/core"; | |
| import Adapter from "@ritley/standalone-adapter"; | |
| import SessionResource from "./resources/session.resource" | |
| import UserResource from "./resources/user.resource" | |
| setAdapter(Adapter, { | |
| "port": 8080 | |
| }); | |
| new SessionResource; | |
| new UserResource; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment