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/integration/google/status.go
Dreaded_X dd03ae56ee
Some checks failed
continuous-integration/drone/push Build is failing
Reorganized code, added google home intergrations and added zigbee2mqtt kettle
2022-11-15 01:03:30 +01:00

11 lines
191 B
Go

package google
type Status string
const (
StatusSuccess Status = "SUCCESS"
StatusOffline = "OFFLINE"
StatusException = "EXCEPTIONS"
StatusError = "ERROR"
)