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

const router = express.Router();

Kim, Chaerin's avatar
.    
Kim, Chaerin committed
6
router.route("/").post(roomCrtl.login);
Kim, Chaerin's avatar
Kim, Chaerin committed
7
8

export default router;