10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
import { getAllUsersFrom, getUserInformation } from "../services/userService";
|
|
|
|
export async function fetchUserData(id: string) {
|
|
return await getUserInformation(id);
|
|
}
|
|
|
|
export async function fetchAllUsers(instanceId: string) {
|
|
return await getAllUsersFrom(instanceId);
|
|
}
|