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.
18 lines
304 B
Go
18 lines
304 B
Go
1 year ago
|
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
|
||
|
}
|