9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
|
|
"use server";
|
||
|
|
|
||
|
|
import { CallApi } from "@/helper/api/ApiConnector";
|
||
|
|
import { cookies } from "next/headers";
|
||
|
|
|
||
|
|
export async function ListUsers() {
|
||
|
|
return await CallApi(`/users`,"GET").catch(e => console.error(e))
|
||
|
|
}
|