// 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 }