Update dependencies to include github.com/godbus/dbus

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2017-03-01 16:49:45 -08:00
parent 3a9e7036a1
commit 69ed8639cd
73 changed files with 7291 additions and 31 deletions

6
vendor/github.com/godbus/dbus/transport_darwin.go generated vendored Normal file
View file

@ -0,0 +1,6 @@
package dbus
func (t *unixTransport) SendNullByte() error {
_, err := t.Write([]byte{0})
return err
}