feat: front-end use RunningMode enum instead of string literals

This commit is contained in:
Tunglies
2025-03-26 22:10:42 +08:00
parent 7ede91599c
commit 7280635741
5 changed files with 10 additions and 4 deletions

View File

@@ -806,3 +806,9 @@ interface IWebDavConfig {
username: string;
password: string;
}
enum RunningMode {
Service = "Service",
Sidecar = "Sidecar",
NotRunning = "NotRunning",
}