From 2e5c745432d2e737b4c9f54a30c8640576afc92c Mon Sep 17 00:00:00 2001 From: Adrian Zankich Date: Mon, 30 Dec 2013 13:36:22 -0800 Subject: [PATCH] Remove Params from driver struct --- device.go | 1 - driver.go | 1 - 2 files changed, 2 deletions(-) diff --git a/device.go b/device.go index d41007b8..82ee9450 100644 --- a/device.go +++ b/device.go @@ -9,7 +9,6 @@ type device struct { Interval string `json:"-"` Robot *Robot `json:"-"` Driver DriverInterface - Params map[string]string `json:"-"` } type Device interface { diff --git a/driver.go b/driver.go index 238fac25..df559e25 100644 --- a/driver.go +++ b/driver.go @@ -4,7 +4,6 @@ type Driver struct { Interval string Pin string Name string - Params map[string]string Commands []string Events map[string]chan interface{} `json:"-"` }