19 lines
310 B
Go
19 lines
310 B
Go
// SPDX-License-Identifier: MIT
|
|
// SPDX-FileCopyrightText: 2023 mysubarumq
|
|
// SPDX-FileContributor: alex-savin
|
|
|
|
package bus
|
|
|
|
type Message struct {
|
|
Topic string
|
|
QOS byte
|
|
Retained bool
|
|
Payload interface{}
|
|
}
|
|
|
|
type ConnectionStatus struct {
|
|
WorkerID string
|
|
WorkerType string
|
|
IsConnected bool
|
|
}
|