diff options
author | Collin Guarino <collin.guarino@gmail.com> | 2016-02-10 19:55:02 -0500 |
---|---|---|
committer | Collin Guarino <collin.guarino@gmail.com> | 2016-02-10 19:55:02 -0500 |
commit | acb88f00e8e9acf7821efd80017a39e1d6620350 (patch) | |
tree | ef4aad904ce8634399f4acfd0b767a5fd6ca99b7 | |
parent | 3ea47fb394b71978b15e44166f1abed05e83cbc5 (diff) |
Added GPLv2 license header to all files.
-rw-r--r-- | bridge.go | 7 | ||||
-rw-r--r-- | bridge_test.go | 7 | ||||
-rw-r--r-- | light.go | 8 | ||||
-rw-r--r-- | light_test.go | 7 |
4 files changed, 28 insertions, 1 deletions
@@ -1,3 +1,10 @@ +/* +* bridge.go +* GoHue library for Philips Hue +* Copyright (C) 2016 Collin Guarino +* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html +*/ + package hue import ( diff --git a/bridge_test.go b/bridge_test.go index b9b0137..1e662b2 100644 --- a/bridge_test.go +++ b/bridge_test.go @@ -1,3 +1,10 @@ +/* +* bridge_test.go +* GoHue library for Philips Hue +* Copyright (C) 2016 Collin Guarino +* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html +*/ + package hue import ( @@ -1,5 +1,11 @@ -// http://www.developers.meethue.com/documentation/lights-api +/* +* light.go +* GoHue library for Philips Hue +* Copyright (C) 2016 Collin Guarino +* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html +*/ +// http://www.developers.meethue.com/documentation/lights-api package hue import ( diff --git a/light_test.go b/light_test.go index 077dff7..a8b10fe 100644 --- a/light_test.go +++ b/light_test.go @@ -1,3 +1,10 @@ +/* +* light_test.go +* GoHue library for Philips Hue +* Copyright (C) 2016 Collin Guarino +* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html +*/ + package hue import ( |