Initial commit.

This commit is contained in:
Pierre THIERRY
2020-09-05 12:51:13 +02:00
commit e794e65942
5 changed files with 2383 additions and 0 deletions

12
app.js Normal file
View 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'));