room.route.js 187 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.test);
Kim, Chaerin's avatar
Kim, Chaerin committed
7
8

export default router;