aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--group.go1
-rw-r--r--scene.go12
-rw-r--r--scene_test.go12
3 files changed, 25 insertions, 0 deletions
diff --git a/group.go b/group.go
index 0ebdcb5..c8c8ff3 100644
--- a/group.go
+++ b/group.go
@@ -12,6 +12,7 @@ import (
"encoding/json"
)
+// Group struct defines the attributes for a group of lights.
type Group struct {
Action struct {
Alert string `json:"alert"`
diff --git a/scene.go b/scene.go
new file mode 100644
index 0000000..0db1e1c
--- /dev/null
+++ b/scene.go
@@ -0,0 +1,12 @@
+/*
+* scene.go
+* GoHue library for Philips Hue
+* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
+* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
+*/
+
+package hue
+
+import (
+
+)
diff --git a/scene_test.go b/scene_test.go
new file mode 100644
index 0000000..4b9564b
--- /dev/null
+++ b/scene_test.go
@@ -0,0 +1,12 @@
+/*
+* scene_test.go
+* GoHue library for Philips Hue
+* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
+* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
+*/
+
+package hue
+
+import (
+
+)