Skip to content

Commit

Permalink
fix: the module path
Browse files Browse the repository at this point in the history
  • Loading branch information
graugans committed Apr 9, 2024
1 parent 742dad6 commit 44750be
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/diagnostic.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package cmd
import (
"fmt"

"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/factoryReset.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/getSchema.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/getinit.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/pcic.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package cmd
import (
"fmt"

"github.com/graugans/go-ovp8xx/pkg/pcic"
"github.com/graugans/go-ovp8xx/v2/pkg/pcic"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/reboot.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"os"

"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/saveinit.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright © 2023 Christian Ege <[email protected]>
package cmd

import (
"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/cmd/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"io"

"github.com/graugans/go-ovp8xx/pkg/ovp8xx"
"github.com/graugans/go-ovp8xx/v2/pkg/ovp8xx"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ovp8xx/ovp8xx.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/graugans/go-ovp8xx/cmd/ovp8xx/cmd"
"github.com/graugans/go-ovp8xx/v2/cmd/ovp8xx/cmd"
)

var (
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/graugans/go-ovp8xx
module github.com/graugans/go-ovp8xx/v2

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion pkg/pcic/chunk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/graugans/go-ovp8xx/pkg/pcic"
"github.com/graugans/go-ovp8xx/v2/pkg/pcic"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/pcic/protocol_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"testing"

"github.com/graugans/go-ovp8xx/pkg/pcic"
"github.com/graugans/go-ovp8xx/v2/pkg/pcic"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 44750be

Please sign in to comment.