Files
concord/concord-server/src/controller/userController.ts
2025-09-27 11:13:37 -04:00

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);
}