pcm-coordinator/model/cloudmodel.go

14 lines
245 B
Go

package model
type (
// CloudModel is an interface to be customized, add more methods here,
// and implement the added methods in customCloudModel.
CloudModel interface {
cloudModel
}
customCloudModel struct {
*defaultCloudModel
}
)