Files
clawdbot/src/daemon/service-runtime.ts
2026-01-08 02:29:32 +01:00

14 lines
315 B
TypeScript

export type GatewayServiceRuntime = {
status?: "running" | "stopped" | "unknown";
state?: string;
subState?: string;
pid?: number;
lastExitStatus?: number;
lastExitReason?: string;
lastRunResult?: string;
lastRunTime?: string;
detail?: string;
cachedLabel?: boolean;
missingUnit?: boolean;
};