Files
frontend/src/app/api/fake-road-patrol/operator/route.js
AmirHossein Mahmoodi 12d6d08bef Feature/amiriis missions
2025-06-25 07:41:03 +00:00

25 lines
664 B
JavaScript

const data = [
{
id: 1,
operator_name: "امین",
phone_number: "09134849737",
car_id: "33",
start_date: "2024-11-02T11:48:22.000000Z",
end_date: "2024-11-03T11:01:14.000000Z",
register_date: "2024-11-03T11:01:14.000000Z",
},
{
id: 2,
operator_name: "امیر",
phone_number: "09134844955",
car_id: "233",
start_date: "2024-11-02T11:48:22.000000Z",
end_date: "2024-11-03T11:01:14.000000Z",
register_date: "2024-11-03T11:01:14.000000Z",
},
];
export async function GET() {
return Response.json({ data });
}