report.js 303 Bytes
Newer Older
chaiwat's avatar
chaiwat committed
1 2 3 4 5 6 7 8 9 10 11 12
// import express from 'express'
const express = require('express')

const router = express.Router()

// import UserController from '../controllers/users/UserController'
const ReportController = require('../controller/ReportController')

router.use('/report', ReportController)


module.exports = router