Skip to content
Merged
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