- apps/captain-mobile: Mobile API service - apps/flow-ui: Flow UI application - apps/mindlink: Mindlink application - apps/storage: Storage API and workers - apps/tzzr-cli: TZZR CLI tool - deck-frontend/backups: Historical TypeScript versions - hst-frontend: Standalone HST frontend Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import { apiClientSafe } from './client.ts';
|
|
import type { Group } from '@/types/index.ts';
|
|
|
|
export const fetchGroups = (): Promise<Group[]> =>
|
|
apiClientSafe<Group[]>('/api_groups', {}, []);
|