mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 06:57:17 -05:00
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
export interface ServiceConfig {
|
|
id: string;
|
|
name: string;
|
|
repo: string;
|
|
kind: "backend" | "frontend" | "worker";
|
|
railwayProject: string;
|
|
railwayService: string;
|
|
domain: string;
|
|
healthPath: string;
|
|
}
|