Mainflux.mainflux/lora/redis/events.go

20 lines
250 B
Go

package redis
type createThingEvent struct {
id string
loraDevEUI string
}
type removeThingEvent struct {
id string
}
type createChannelEvent struct {
id string
loraAppID string
}
type removeChannelEvent struct {
id string
}