index.ts 368 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
11
router.use("/posts", postRouter);
//posting함수 -> mongodb에 posts json형식으로 저장
Kim, MinGyu's avatar
Kim, MinGyu committed
12

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