diff options
author | Collin Guarino <collin.guarino@gmail.com> | 2016-01-22 20:04:42 -0500 |
---|---|---|
committer | Collin Guarino <collin.guarino@gmail.com> | 2016-01-22 20:04:42 -0500 |
commit | 8adbc8bc11203c1efe373934b18c79ce14649e5a (patch) | |
tree | 26db9e2efa0a645cd105f3918b361e11b1c9cc3a |
Base structure for bridge.
-rw-r--r-- | bridge.go | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bridge.go b/bridge.go new file mode 100644 index 0000000..73576e1 --- /dev/null +++ b/bridge.go @@ -0,0 +1,28 @@ +package main + +import ( + "log" +) + +func main() { + log.Println("Test") +} + +type Bridge struct { + IPAddress string + Username string + Debug bool + Info Description +} + +type Description struct { + DeviceType string + FriendlyName string + ManufacturerURL string + About string + ModelName string + ModelNumber string + ModelURL string + SerialNumber string + UDN string +} |