Files
shomal-hospital-ticketing-f…/services/api/department.api.ts
2026-05-23 13:22:10 +03:30

5 lines
154 B
TypeScript

import callAPI from "../caller/config";
export async function getDepartments() {
return await callAPI.get("/department/all").then((res) => res.data);
}