6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import callAPI from "../caller/config";
|
|
|
|
export async function getUsers() {
|
|
return await callAPI.get("/user/all").then((res) => res.data);
|
|
}
|