Initial commit.
This commit is contained in:
12
app.js
Normal file
12
app.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const express = require('express');
|
||||
const Mongo = require('./mongo');
|
||||
|
||||
const app = express();
|
||||
const port = 3000;
|
||||
|
||||
|
||||
app.get('/test', (request, response) => {
|
||||
const mongoClient = new Mongo();
|
||||
})
|
||||
|
||||
app.listen(port, () => console.log('Mock is listening at port ', port, '\n'));
|
||||
Reference in New Issue
Block a user