| 1234567891011121314151617 |
- package client
- type NamespaceInfo struct {
- ID string `json:"id"`
- Name string `json:"name"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
- type DataSourceInfo struct {
- Namespace string `json:"namespace"`
- Name string `json:"name"`
- Type string `json:"type"`
- Spec string `json:"spec"`
- Creator string `json:"creator"`
- CreatedTime string `json:"createdTime"`
- }
|