pcm-coordinator/model/taskmodel.go

14 lines
239 B
Go

package model
type (
// TaskModel is an interface to be customized, add more methods here,
// and implement the added methods in customTaskModel.
TaskModel interface {
taskModel
}
customTaskModel struct {
*defaultTaskModel
}
)