mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-26 09:26:12 +01:00
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
'use server'
|
|
|
|
import { getGroup } from '@/lib/api'
|
|
|
|
export async function getGroupInfoAction(groupId: string) {
|
|
'use server'
|
|
return getGroup(groupId)
|
|
}
|