Files
hounam-submit-form-frontend/services/apis/center.api.ts
2026-05-31 18:00:43 +03:30

6 lines
147 B
TypeScript

import callAPI from "@/core/caller";
export async function getAllCenters() {
return await callAPI.get(`/center/all`).then((res) => res.data);
}