Skip to content

Commit

Permalink
Merge pull request #6 from kairos-io/fix-import-path
Browse files Browse the repository at this point in the history
Change module import path
  • Loading branch information
jimmykarily authored Apr 20, 2023
2 parents e5a6630 + 39a185b commit ea6ec56
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"fmt"
"time"

nodepair "github.com/mudler/go-nodepair"
qr "github.com/mudler/go-nodepair/qrcode"
nodepair "github.com/kairos-io/go-nodepair"
qr "github.com/kairos-io/go-nodepair/qrcode"
)

func main() {
Expand Down Expand Up @@ -48,8 +48,8 @@ import (
"fmt"
"time"

nodepair "github.com/mudler/go-nodepair"
qr "github.com/mudler/go-nodepair/qrcode"
nodepair "github.com/kairos-io/go-nodepair"
qr "github.com/kairos-io/go-nodepair/qrcode"
)

func main() {
Expand All @@ -66,4 +66,4 @@ func main() {
}
```

The pairing options can be used in both sender/receiver, allowing to use QR code also for receiving payload, and vice-versa.
The pairing options can be used in both sender/receiver, allowing to use QR code also for receiving payload, and vice-versa.
4 changes: 2 additions & 2 deletions examples/pair.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"time"

nodepair "github.com/mudler/go-nodepair"
qr "github.com/mudler/go-nodepair/qrcode"
nodepair "github.com/kairos-io/go-nodepair"
qr "github.com/kairos-io/go-nodepair/qrcode"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mudler/go-nodepair
module github.com/kairos-io/go-nodepair

go 1.17

Expand Down
4 changes: 2 additions & 2 deletions pairing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"os"
"time"

qr "github.com/mudler/go-nodepair/qrcode"
qr "github.com/kairos-io/go-nodepair/qrcode"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/skip2/go-qrcode"

nodepair "github.com/mudler/go-nodepair"
nodepair "github.com/kairos-io/go-nodepair"
)

var _ = Describe("Pairing", func() {
Expand Down

0 comments on commit ea6ec56

Please sign in to comment.