16 lines
366 B
Go
16 lines
366 B
Go
package response
|
|
|
|
type ScreenAi struct {
|
|
Name string `json:"name"`
|
|
Status string `json:"status"`
|
|
Strategy string `json:"strategy"`
|
|
Replica string `json:"replica"`
|
|
ClusterName string `json:"clusterName"`
|
|
ModelName string `json:"modelName"`
|
|
}
|
|
|
|
type PieChart struct {
|
|
ModelName string `json:"modelName"`
|
|
Ratio float32 `json:"ratio"`
|
|
}
|