aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/add-group-by-url-button-actions.ts
blob: b6c514748d9d676041b87711133da72dc06f6e42 (plain)
1
2
3
4
5
6
7
8
'use server'

import { getGroup } from '@/lib/api'

export async function getGroupInfoAction(groupId: string) {
  'use server'
  return getGroup(groupId)
}