Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 77x 77x 77x | import { Router } from "express";
import statistics_get from "../routes/statistics_routes/statistics_get.js";
import statistics_setMonthTarget_get from "../routes/statistics_routes/statistics_setMonthTarget_get.js";
const router = Router();
router.get("/", statistics_get);
router.post("/monthly-targets", statistics_setMonthTarget_get);
export default router; |