index.ts 308 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
3
import express from "express";
import userRouter from "./user.route";
import authRouter from "./auth.route";
Lee Soobeom's avatar
Lee Soobeom committed
4
import postRouter from "./post.route";
Yoon, Daeki's avatar
Yoon, Daeki committed
5
6
7
8
9

const router = express.Router();

router.use("/users", userRouter);
router.use("/auth", authRouter);
10
router.use("/posts", postRouter);
Kim, MinGyu's avatar
Kim, MinGyu committed
11

Yoon, Daeki's avatar
Yoon, Daeki committed
12
export default router;