Files
MERN-template/server/chat/index.js
T

8 lines
207 B
JavaScript

const express = require('express');
const router = express.Router();
//reserve the name on the chat server (then get out of the way)
router.post('/reserve', require('./reserve'));
module.exports = router;