pcm-coordinator/pkg/models/aimodel.go

14 lines
228 B
Go

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