aboutsummaryrefslogtreecommitdiff
path: root/bridge.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-01-22 20:04:42 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-01-22 20:04:42 -0500
commit8adbc8bc11203c1efe373934b18c79ce14649e5a (patch)
tree26db9e2efa0a645cd105f3918b361e11b1c9cc3a /bridge.go
Base structure for bridge.
Diffstat (limited to 'bridge.go')
-rw-r--r--bridge.go28
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
+}