mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00
20 lines
250 B
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
|
|
}
|