Refactoring

This commit is contained in:
stSolo
2022-08-11 16:39:39 +03:00
parent 9563097dcb
commit 39a6f9a1ce
300 changed files with 64 additions and 58 deletions

View File

@@ -0,0 +1,15 @@
package k8ci
type K8CIItem struct {
CreatedTime uint64 `json:"createdTime"`
K8CIRecord
}
type K8CIList []K8CIItem
type K8CIRecord struct {
Description string `json:"desc"`
ID uint64 `json:"id"`
Name string `json:"name"`
Version string `json:"version"`
}