pcm-coordinator/model/hpcmodel.go

14 lines
233 B
Go

package model
type (
// HpcModel is an interface to be customized, add more methods here,
// and implement the added methods in customHpcModel.
HpcModel interface {
hpcModel
}
customHpcModel struct {
*defaultHpcModel
}
)