This commit is contained in:
stSolo
2022-12-22 17:56:47 +03:00
parent 8712561853
commit d4b1ab7133
672 changed files with 28509 additions and 4419 deletions

View File

@@ -1,15 +1,28 @@
package k8ci
type K8CIItem struct {
// Detailed information about K8CI
type ItemK8CI struct {
// Created time
CreatedTime uint64 `json:"createdTime"`
K8CIRecord
// Main information about K8CI
RecordK8CI
}
type K8CIList []K8CIItem
// List of K8CI
type ListK8CI []ItemK8CI
type K8CIRecord struct {
// Main information about K8CI
type RecordK8CI struct {
// Description
Description string `json:"desc"`
ID uint64 `json:"id"`
Name string `json:"name"`
Version string `json:"version"`
// ID
ID uint64 `json:"id"`
// Name
Name string `json:"name"`
// Version
Version string `json:"version"`
}