CoffeeChat/webapp/actions/users/UserActions.ts

9 lines
217 B
TypeScript
Raw Normal View History

2026-04-03 12:35:13 +02:00
"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))
}