mirror of
https://github.com/gosticks/go-hue-interface.git
synced 2025-10-16 11:45:35 +00:00
9 lines
172 B
Go
9 lines
172 B
Go
package main
|
|
|
|
// Config hue api config
|
|
type Config struct {
|
|
Username string `yaml:name`
|
|
Password string `yaml:userpassword`
|
|
BridgeAddr string `yaml:bridgeAddress`
|
|
}
|