Skip to content

Commit

Permalink
fix name, because hyphens are bad in go packages
Browse files Browse the repository at this point in the history
  • Loading branch information
shibumi committed Jul 14, 2020
1 parent 504f7a7 commit 1c3a768
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion adapter.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

const (
objectAdapter = "net.connman.iwd.Adapter"
Expand Down
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

dbus "github.com/godbus/dbus/v5"
"github.com/shibumi/go-iwd"
"github.com/shibumi/iwd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion device.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

import "github.com/godbus/dbus/v5"

Expand Down
2 changes: 1 addition & 1 deletion iwd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

import (
"github.com/godbus/dbus/v5"
Expand Down
2 changes: 1 addition & 1 deletion known_network.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

const (
objectKnownNetwork = "net.connman.iwd.KnownNetwork"
Expand Down
2 changes: 1 addition & 1 deletion network.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

import dbus "github.com/godbus/dbus/v5"

Expand Down
2 changes: 1 addition & 1 deletion station.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go-iwd
package iwd

import "github.com/godbus/dbus/v5"

Expand Down

0 comments on commit 1c3a768

Please sign in to comment.