Files
geointel/frontend/src/services/api/demo.ts
T
Codex 6ea3586a3e
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled
Initial GeoIntel V1 foundation
2026-06-16 23:36:32 +02:00

7 lines
228 B
TypeScript

import { apiPost } from './client'
import type { DemoWorkflowResponse } from '../../types'
export const demoApi = {
seedWorkflow: (): Promise<DemoWorkflowResponse> => apiPost<DemoWorkflowResponse>('/api/v1/demo/workflow'),
}