Skip to content

Commit 4c14ed3

Browse files
committed
Merge pull request #41 from philips/use-new-dbus
fix(dbus): use github.com/godbus/dbus
2 parents 4fbc506 + e235feb commit 4c14ed3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dbus/dbus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"strings"
2424
"sync"
2525

26-
"github.com/guelfey/go.dbus"
26+
"github.com/godbus/dbus"
2727
)
2828

2929
const signalBuffer = 100

dbus/methods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package dbus
1818

1919
import (
2020
"errors"
21-
"github.com/guelfey/go.dbus"
21+
"github.com/godbus/dbus"
2222
)
2323

2424
func (c *Conn) initJobs() {

dbus/properties.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package dbus
1818

1919
import (
20-
"github.com/guelfey/go.dbus"
20+
"github.com/godbus/dbus"
2121
)
2222

2323
// From the systemd docs:

dbus/subscription.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"errors"
2121
"time"
2222

23-
"github.com/guelfey/go.dbus"
23+
"github.com/godbus/dbus"
2424
)
2525

2626
const (

0 commit comments

Comments
 (0)