eletrotupi / tcc / api/src/routes/insights.ts master
257 B Raw
import { Router } from "express";
import { requireAuth } from "@app/middleware/auth";
import { InsightsController } from "@app/controllers/insights";

const router = Router();

router.get("/", requireAuth, InsightsController.index);

export default router;