CoffeeChat/webapp/actions/room/RoomActions.ts
2026-04-03 12:35:13 +02:00

7 lines
143 B
TypeScript

'use server'
import { CallApi } from "@/helper/api/ApiConnector"
export async function getRooms(){
return await CallApi("/rooms","GET")
}