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