Skip to content

Commit

Permalink
Fix Go modules usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
v0ctor committed Feb 25, 2023
1 parent fe852c8 commit a42f8b6
Show file tree
Hide file tree
Showing 1,304 changed files with 9,567 additions and 5,347 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ package main
import (
"log"

"github.com/netbox-community/go-netbox/netbox"
"github.com/netbox-community/go-netbox/v3/netbox"
)

func main() {
Expand All @@ -53,7 +53,7 @@ import (
"log"

transport "github.com/go-openapi/runtime/client"
"github.com/netbox-community/go-netbox/netbox/client"
"github.com/netbox-community/go-netbox/v3/netbox/client"
)

func main() {
Expand Down Expand Up @@ -87,8 +87,8 @@ package main
import (
"log"

"github.com/netbox-community/go-netbox/netbox"
"github.com/netbox-community/go-netbox/netbox/client/virtualization"
"github.com/netbox-community/go-netbox/v3/netbox"
"github.com/netbox-community/go-netbox/v3/netbox/client/virtualization"
)

var status = "active"
Expand Down
2 changes: 1 addition & 1 deletion examples/customhost/customhost.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"os"

"github.com/netbox-community/go-netbox/netbox/client"
"github.com/netbox-community/go-netbox/v3/netbox/client"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/debugflag/debugflag.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

runtimeclient "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
"github.com/netbox-community/go-netbox/netbox/client"
"github.com/netbox-community/go-netbox/v3/netbox/client"
)

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/netbox-community/go-netbox
module github.com/netbox-community/go-netbox/v3

go 1.20

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a42f8b6

Please sign in to comment.