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
235 B
Go
18 lines
235 B
Go
11 months ago
|
package gtp
|
||
|
|
||
|
type (
|
||
|
// GTPCommand GTP命令
|
||
|
GTPCommand struct {
|
||
|
ID string // 消息ID
|
||
|
Cmd string
|
||
|
Args []string
|
||
|
}
|
||
|
|
||
|
// GTPResponse GTP命令回复
|
||
|
GTPResponse struct {
|
||
|
ID string
|
||
|
Content string
|
||
|
Err error
|
||
|
}
|
||
|
)
|