123456789101112131415161718192021222324 |
- package rpcs
- import (
- "sparrow/pkg/klink"
- )
- type ArgsOnStatus struct {
- DeviceId string
- Timestamp uint64
- SubData []byte
- VendorId string
- Action klink.PacketAction
- SubDeviceId string
- }
- type ReplyOnStatus ReplyEmptyResult
- type ArgsOnEvent struct {
- VendorId string
- DeviceId string
- TimeStamp uint64
- SubDeviceId string
- SubData []byte
- }
- type ReplyOnEvent ReplyEmptyResult
|