Delete path/to directory

This commit is contained in:
Sovran_Systems
2026-04-04 09:30:27 -05:00
committed by GitHub
parent 589ee3fc1b
commit 3d986742a6
-15
View File
@@ -1,15 +0,0 @@
// Update the service data model to include requiresDomain and domain status fields.
class Service {
String name;
boolean requiresDomain;
DomainStatus domainStatus;
}
// Enum to represent domain status health checks for services
enum DomainStatus {
MISSING,
MISCONFIGURED,
CONNECTED,
UNKNOWN
}