mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 06:57:17 -05:00
12 lines
215 B
TypeScript
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[];
|