import { Router } from "express";
import { getLiveDashboard } from "./dashboard.controller";
import { protect } from "../../middlewares/auth.middleware";
import { attachShop } from "../../middlewares/shop.middleware";

const router = Router();

router.get(
    "/dashboard/live",
    protect,
    attachShop,
    getLiveDashboard
);

export default router;