airobot/lib/base.go
2022-12-09 18:41:12 +08:00

12 lines
127 B
Go

package lib
type ActionReq struct {
ID int64
Req []byte
}
const (
//默认的机器人数量
DefaultRobotNum int = 10
)