Files
blackroad-operating-system/services/types.ts
2025-11-21 13:30:18 -06:00

12 lines
215 B
TypeScript

export type ServiceKind = "backend" | "frontend";
export interface OsService {
id: string;
name: string;
kind: ServiceKind;
repo: string;
healthUrl: string;
}
export type OsServiceCatalog = OsService[];