You've already forked speedtest-go
go.mod: make module name match repository (#74)
This commit is contained in:
committed by
GitHub
parent
123cd29ffb
commit
603cbdeec5
@@ -5,7 +5,7 @@ import (
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
"go.etcd.io/bbolt"
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package database
|
||||
|
||||
import (
|
||||
"github.com/librespeed/speedtest/config"
|
||||
"github.com/librespeed/speedtest/database/bolt"
|
||||
"github.com/librespeed/speedtest/database/memory"
|
||||
"github.com/librespeed/speedtest/database/mysql"
|
||||
"github.com/librespeed/speedtest/database/none"
|
||||
"github.com/librespeed/speedtest/database/postgresql"
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/config"
|
||||
"github.com/librespeed/speedtest-go/database/bolt"
|
||||
"github.com/librespeed/speedtest-go/database/memory"
|
||||
"github.com/librespeed/speedtest-go/database/mysql"
|
||||
"github.com/librespeed/speedtest-go/database/none"
|
||||
"github.com/librespeed/speedtest-go/database/postgresql"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
@@ -5,7 +5,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@@ -4,7 +4,7 @@ import (
|
||||
"database/sql"
|
||||
"fmt"
|
||||
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package none
|
||||
|
||||
import (
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
)
|
||||
|
||||
type None struct{}
|
||||
|
||||
@@ -4,7 +4,7 @@ import (
|
||||
"database/sql"
|
||||
"fmt"
|
||||
|
||||
"github.com/librespeed/speedtest/database/schema"
|
||||
"github.com/librespeed/speedtest-go/database/schema"
|
||||
|
||||
_ "github.com/lib/pq"
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
Reference in New Issue
Block a user