pcm-coordinator/model/aimodel.go

14 lines
227 B
Go

package model
type (
// AiModel is an interface to be customized, add more methods here,
// and implement the added methods in customAiModel.
AiModel interface {
aiModel
}
customAiModel struct {
*defaultAiModel
}
)