You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool-biz/nkatago/engine.go

18 lines
304 B
Go

package nkatago
import "git.noahlan.cn/noahlan/ntool/nsys/cmdn"
type EngineType = string
const (
EngineGTP EngineType = "Gtp"
EngineAnalysis EngineType = "Analysis"
)
// KatagoEngine katago 引擎
type KatagoEngine struct {
Processor *cmdn.Processor
Name string
Mode EngineType
}