user.route.js 285 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
import express from "express";
import userCtrl from "../controllers/user.controller.js";

const router = express.Router();

우지원's avatar
0726    
우지원 committed
6
router.route("/getUser").get(userCtrl.user);
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
7
router.route("/login").post(userCtrl.login);
Kim, Chaerin's avatar
서버    
Kim, Chaerin committed
8
router.route("/signup").post(userCtrl.signup);
Kim, Chaerin's avatar
Kim, Chaerin committed
9
10

export default router;