import { Router } from "express";
import { checkAuth } from "../middleware/checkAuth";
import {
  getGasStationPayment,
  listMyGasStationPayments,
} from "../controllers/gasStationPaymentController";

const router = Router();

router.get("/", checkAuth, listMyGasStationPayments);
router.get("/:paymentId", checkAuth, getGasStationPayment);

export default router;
