/** * Tauri adapter for {@link WorkStateGateway}. * * This is the only frontend place that knows the `get_project_work_state` * command name; features consume the gateway port through DI. */ import { invoke } from "@tauri-apps/api/core"; import type { ProjectWorkState } from "@/domain"; import type { WorkStateGateway } from "@/ports"; export class TauriWorkStateGateway implements WorkStateGateway { getProjectWorkState(projectId: string): Promise { return invoke("get_project_work_state", { projectId }); } }