Cosmetics

This commit is contained in:
Andrei Pohilko
2022-11-08 14:37:48 +00:00
parent 2454fcf47c
commit dadf2d1bde
6 changed files with 23 additions and 22 deletions

View File

@@ -521,3 +521,11 @@ func GetDiff(text1 string, text2 string, name1 string, name2 string) string {
log.Debugf("The diff is: %s", diff)
return diff
}
type NamespaceElement struct {
Items []struct {
Metadata struct {
Name string `json:"name"`
} `json:"metadata"`
} `json:"items"`
}