Skip to content
Snippets Groups Projects
Commit 5fec070e authored by 조대희's avatar 조대희
Browse files

feat: 스케줄 라우터 등록 (#6)

parent 8cf40751
No related branches found
No related tags found
2 merge requests!31Develop,!7[#6] Schedule 컨트롤러, 라우터, 로직 개발
......@@ -35,6 +35,11 @@ app.use(flash());
const authRoutes = require('./routes/auth');
app.use('/auth', authRoutes);
// Schedule 라우터
const scheduleRoutes = require('./routes/schedule');
app.use('/api/schedule', scheduleRoutes);
const PORT = process.env.PORT || 3000;
app.get('/', (req, res) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment