Skip to content

Commit

Permalink
✨ app에 mail router 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanHoLee275 committed Sep 23, 2021
1 parent 1d71d59 commit 1ca7a0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const indexRouter = require('./src/routes/index');
const userRouter = require('./src/routes/user');
const authRouter = require('./src/routes/auth');
const teamRouter = require('./src/routes/team');
const mailRouter = require('./src/routes/mail');

const app = express();

Expand All @@ -31,5 +32,6 @@ app.use('/', indexRouter);
app.use('/user', userRouter);
app.use('/auth', authRouter);
app.use('/study',teamRouter);
app.use('/mail',mailRouter);

module.exports = app;

0 comments on commit 1ca7a0e

Please sign in to comment.