This repository has been archived on 2023-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
automation/connect/connect.go

15 lines
212 B
Go

package connect
import (
"automation/integration/hue"
"automation/integration/ntfy"
paho "github.com/eclipse/paho.mqtt.golang"
)
type Connect struct {
Client paho.Client
Hue hue.Hue
Notify ntfy.Notify
}