sothis-contratacao-api/src/app.js

9 lines
179 B
JavaScript
Raw Normal View History

const express = require('express');
const routes = require('./routes/routes.js');
const app = express();
app.use(express.json());
app.use('/api', routes);
module.exports = app;