task update

This commit is contained in:
Samandar Turgunboyev
2026-01-26 16:40:07 +05:00
parent 30f842c53d
commit 88dc5470d9
13 changed files with 165 additions and 46 deletions

View File

@@ -37,4 +37,11 @@ export const doctor_api = {
const res = await httpClient.delete(`${API_URLS.DOCTOR}${id}/delete/`);
return res;
},
async export() {
const res = await httpClient.get(`${API_URLS.DOCTOR_EXPORT}`, {
responseType: "blob",
});
return res;
},
};