first commit

This commit is contained in:
2025-05-21 13:51:10 -04:00
commit b61c4b59ec
23 changed files with 3097 additions and 0 deletions

18
bus/messages.go Normal file
View File

@ -0,0 +1,18 @@
// 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
}