chat.routers.js 227 Bytes
Newer Older
Soo Hyun Kim's avatar
Soo Hyun Kim committed
1
2
3
4
5
6
7
8
9
import express from 'express'
import chatCtrl from '../controllers/chat.controller.js'

const router = express.Router()

router.route('/chat/makeChat')
    .post(chatCtrl.makeChat)
    .get(chatCtrl.hello)
export default router