Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use full link for the module directive in go.mod #20

Merged
merged 10 commits into from
Jan 18, 2022
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module librespeed-cli
module github.com/librespeed/speedtest-cli

go 1.14

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"

"librespeed-cli/defs"
"librespeed-cli/speedtest"
"github.com/librespeed/speedtest-cli/defs"
"github.com/librespeed/speedtest-cli/speedtest"
)

// init sets up the essential bits on start up
Expand Down
2 changes: 1 addition & 1 deletion report/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package report
import (
"time"

"librespeed-cli/defs"
"github.com/librespeed/speedtest-cli/defs"
)

// JSONReport represents the output data fields in a JSON file
Expand Down
4 changes: 2 additions & 2 deletions speedtest/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"

"librespeed-cli/defs"
"librespeed-cli/report"
"github.com/librespeed/speedtest-cli/defs"
"github.com/librespeed/speedtest-cli/report"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions speedtest/speedtest.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"

"librespeed-cli/defs"
"librespeed-cli/report"
"github.com/librespeed/speedtest-cli/defs"
"github.com/librespeed/speedtest-cli/report"
)

const (
Expand Down