pcm-participant/cloud/platform/platform.go

17 lines
285 B
Go

package platform
const (
K8s Type = "kubernetes"
Eci Type = "eci"
Serverless Type = "serverless"
)
type Platform struct {
Name string `json:"name,omitempty"`
Id Id `json:"id,omitempty"`
Type Type `json:"type,omitempty"`
}
type Type string
type Id string