Delete path/to directory

This commit is contained in:
Sovran_Systems
2026-04-04 09:30:27 -05:00
committed by GitHub
parent f49a542ddf
commit cf46424f50

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
}