Skip to content

Commit

Permalink
fix: switch all imports to vanity url
Browse files Browse the repository at this point in the history
Go requires it
  • Loading branch information
alethenorio committed Dec 17, 2020
1 parent eb05b20 commit bd84749
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion application.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const applicationBasePath = "v4/application"
Expand Down
2 changes: 1 addition & 1 deletion application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion device.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const deviceBasePath = "v4/device"
Expand Down
2 changes: 1 addition & 1 deletion device_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion deviceenvvar.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const deviceEnvVarBasePath = "v4/device_environment_variable"
Expand Down
2 changes: 1 addition & 1 deletion deviceenvvar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion devicetag.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const deviceTagBasePath = "v4/device_tag"
Expand Down
2 changes: 1 addition & 1 deletion devicetag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package balena_test
import (
"context"

"github.com/einride/balena-go"
"go.einride.tech/balena"
)

func ExampleDeviceService_Get() {
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/einride/balena-go
module go.einride.tech/balena

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion release.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const releaseBasePath = "v4/release"
Expand Down
2 changes: 1 addition & 1 deletion release_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion releasetag.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"strconv"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
)

const releaseTagBasePath = "v5/release_tag"
Expand Down
2 changes: 1 addition & 1 deletion releasetag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
"testing"

"github.com/einride/balena-go/odata"
"go.einride.tech/balena/odata"
"gotest.tools/v3/assert"
)

Expand Down

0 comments on commit bd84749

Please sign in to comment.