Basic backend support and config loading from file

This commit is contained in:
Aj - Thomas
2022-05-12 19:28:10 +02:00
parent e61e986028
commit 91f636ca97
10 changed files with 235 additions and 46 deletions

View File

@@ -6,6 +6,7 @@ export interface Settings {
}
export interface Config {
name: string;
services: serviceItem[];
settings: Settings;
}