robin*

bodyParser 추가

......@@ -4,4 +4,8 @@ const bodyParser = require('body-parser');
require('express-async-errors');
const app = express();
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
module.exports = app;
......