pcm-coordinator/pkg/models/hpcmodel.go

14 lines
234 B
Go

package models
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
}
)