We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54dbc2e commit 6f92cb5Copy full SHA for 6f92cb5
index.js
@@ -0,0 +1,11 @@
1
+const express = require('express')
2
+const locationController = require('./locations/locations.controller')
3
+const app = express()
4
+const port = 3000
5
+
6
7
+app.use(locationController)
8
9
+app.listen(port, () => {
10
+ console.log(`API listening on port ${port}, visit http://localhost:${port}/`)
11
+})
0 commit comments