Last active
September 6, 2020 09:52
-
-
Save julioflima/f81dfa4a5b32a6b0ca24575d0c5c6951 to your computer and use it in GitHub Desktop.
Server listener.
This file contains 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
const Routes = require('./Routes'); | |
const App = require('./App.js'); | |
const routes = new Routes(); | |
const app = new App(routes).server; | |
app.listen(3000); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment