mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00
32 lines
416 B
Go
32 lines
416 B
Go
![]() |
package redis
|
||
|
|
||
|
type createThingEvent struct {
|
||
|
id string
|
||
|
kind string
|
||
|
metadata string
|
||
|
}
|
||
|
|
||
|
type updateThingEvent struct {
|
||
|
id string
|
||
|
kind string
|
||
|
metadata string
|
||
|
}
|
||
|
|
||
|
type removeThingEvent struct {
|
||
|
id string
|
||
|
}
|
||
|
|
||
|
type createChannelEvent struct {
|
||
|
id string
|
||
|
metadata string
|
||
|
}
|
||
|
|
||
|
type updateChannelEvent struct {
|
||
|
id string
|
||
|
metadata string
|
||
|
}
|
||
|
|
||
|
type removeChannelEvent struct {
|
||
|
id string
|
||
|
}
|