2022-01-15 18:32:46 +00:00
|
|
|
//relatorio
|
|
|
|
import express from "express";
|
|
|
|
|
|
|
|
import isAuth from "../middleware/isAuth";
|
|
|
|
|
|
|
|
import * as ReportController from "../controllers/ReportController";
|
|
|
|
|
2022-01-27 00:33:16 +00:00
|
|
|
const reportRoutes = express.Router();
|
2022-01-15 18:32:46 +00:00
|
|
|
|
2022-01-27 00:33:16 +00:00
|
|
|
reportRoutes.get("/reports", isAuth, ReportController.reportUserByDateStartDateEnd);
|
2022-01-15 18:32:46 +00:00
|
|
|
|
|
|
|
export default reportRoutes;
|