aboutsummaryrefslogtreecommitdiff
path: root/scene.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-14 23:20:19 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-14 23:20:19 -0500
commit03d8d97ce9a3468b060e462f8480a36a76956415 (patch)
tree428f61823bb3e547e2f59d03349ab9c911e9d63e /scene.go
parentfb14bbfab6d23cac1fc987a6190c11b41fadc4d7 (diff)
Documentation links for philips hue website to official docs added to all file headers.
Diffstat (limited to 'scene.go')
-rw-r--r--scene.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/scene.go b/scene.go
index 06b754a..da26718 100644
--- a/scene.go
+++ b/scene.go
@@ -4,6 +4,7 @@
* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
*/
+// http://www.developers.meethue.com/documentation/scenes-api
package hue
@@ -37,8 +38,6 @@ func (bridge *Bridge) GetAllScenes() ([]Scene, error) {
return []Scene{}, err
}
- fmt.Sprintf("GET SCENES BODY: ", string(body))
-
scenes := map[string]Scene{}
err = json.Unmarshal(body, &scenes)
if err != nil {