28 lines
387 B
Go
28 lines
387 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package events
|
|
|
|
type createThingEvent struct {
|
|
id string
|
|
loraDevEUI string
|
|
}
|
|
|
|
type removeThingEvent struct {
|
|
id string
|
|
}
|
|
|
|
type createChannelEvent struct {
|
|
id string
|
|
loraAppID string
|
|
}
|
|
|
|
type removeChannelEvent struct {
|
|
id string
|
|
}
|
|
|
|
type connectionThingEvent struct {
|
|
chanID string
|
|
thingID string
|
|
}
|