1234567891011121314151617 |
- package protocol
- // 注册应答
- type Dlt_0x0040 struct {
- }
- func (entity *Dlt_0x0040) MsgID() MsgID {
- return Msgdlt_0x0040
- }
- func (entity *Dlt_0x0040) Encode(ctx *PacketContext) ([]byte, error) {
- panic("emmm")
- }
- func (entity *Dlt_0x0040) Decode(ctx *PacketContext, data []byte) (result Data, err error) {
- return result, err
- }
|