Removes more Wild Cloud cruft.

This commit is contained in:
2026-07-11 23:21:23 +00:00
parent ac66ba653d
commit 5d8fe6a754
21 changed files with 196 additions and 1391 deletions

View File

@@ -147,13 +147,4 @@ func SaveState(config *State, configPath string) error {
return os.WriteFile(configPath, data, 0644)
}
// IsEmpty checks if the configuration is empty or uninitialized
func (c *State) IsEmpty() bool {
if c == nil {
return true
}
// Check if essential fields are empty
return c.Cloud.Central.Domain == "" && c.Operator.Email == ""
}