move light struct

This commit is contained in:
Ryan Cavicchioni 2020-02-29 15:58:20 -06:00
parent 37d3179662
commit becc179184
Signed by: ryanc
GPG Key ID: 877EEDAF9245103D
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,8 @@ import (
) )
type ( type (
Status string
State struct { State struct {
Power string `json:"power,omitempty"` Power string `json:"power,omitempty"`
Color Color `json:"color,omitempty"` Color Color `json:"color,omitempty"`

View File

@ -12,8 +12,6 @@ type (
) )
type ( type (
Status string
RGBColor struct { RGBColor struct {
R, G, B uint8 R, G, B uint8
} }