user.route.js 289 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();

seoyeon's avatar
0727    
seoyeon committed
6
router.route("/getUser").post(userCtrl.getUser);
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;