aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}