11 lines
No EOL
348 B
JavaScript
11 lines
No EOL
348 B
JavaScript
import express from "express"
|
|
import {getProducts, getCustomers, getTransactions, getGeography} from "../controllers/client.js"
|
|
|
|
const router = express.Router();
|
|
|
|
router.get("/products", getProducts);
|
|
router.get("/customers", getCustomers);
|
|
router.get("/transactions", getTransactions)
|
|
router.get("/geography", getGeography)
|
|
|
|
export default router; |