pcm-coordinator/model/scnodephyinfomodel.go

14 lines
293 B
Go
Executable File

package model
type (
// ScNodePhyInfoModel is an interface to be customized, add more methods here,
// and implement the added methods in customScNodePhyInfoModel.
ScNodePhyInfoModel interface {
scNodePhyInfoModel
}
customScNodePhyInfoModel struct {
*defaultScNodePhyInfoModel
}
)