index.js 163 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
import express from "express";
Choi Ga Young's avatar
Choi Ga Young committed
2
import userRouter from './user.route.js';
Kim, Subin's avatar
Kim, Subin committed
3
4
5

const router = express.Router();

Choi Ga Young's avatar
Choi Ga Young committed
6
7
router.use('/auth', userRouter)

Kim, Subin's avatar
Kim, Subin committed
8
export default router;