aboutsummaryrefslogtreecommitdiff
path: root/bridge.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge.go')
-rw-r--r--bridge.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/bridge.go b/bridge.go
index f8009f8..942318a 100644
--- a/bridge.go
+++ b/bridge.go
@@ -57,6 +57,13 @@ func (self *Bridge) Get(path string) ([]byte, io.Reader, error) {
return body, reader, nil
}
+func (self *Bridge) Post(path string) ([]byte, io.Reader, error) {
+ // resp, err := http.Post("http://" + self.IpAddress + path)
+ // if err != nil {
+ // trace("", err)
+ // }
+}
+
// Error Struct
// http://www.developers.meethue.com/documentation/error-messages
type Error struct {