mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-23 07:56:12 +01:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
'use server'
|
|
import { getGroups } from "@/lib/api"
|
|
|
|
export async function getGroupsAction(groupIds: string[]) {
|
|
'use server'
|
|
return getGroups(groupIds)
|
|
}
|