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/ngochess/gtp/msg.go

18 lines
235 B
Go

package gtp
type (
// GTPCommand GTP命令
GTPCommand struct {
ID string // 消息ID
Cmd string
Args []string
}
// GTPResponse GTP命令回复
GTPResponse struct {
ID string
Content string
Err error
}
)