kops/upup/pkg/fi/cloud.go

11 lines
191 B
Go

package fi
type CloudProviderID string
const CloudProviderAWS CloudProviderID = "aws"
const CloudProviderGCE CloudProviderID = "gce"
type Cloud interface {
ProviderID() CloudProviderID
}