This commit is contained in:
injoy
2024-10-27 00:45:56 +08:00
parent 05e0bcd693
commit ec6e93d845
8 changed files with 98 additions and 41 deletions

View File

@@ -1,5 +1,15 @@
package protocol
type Control uint8
func (this Control) Uint8() uint8 {
return uint8(this)
}
const (
Control01 Control = 0x01 //好像都是01暂时不知道啥含义
)
type Exchange uint8
func (this Exchange) Uint8() uint8 { return uint8(this) }