go.mod: make module name match repository (#74)

This commit is contained in:
Michael Stapelberg
2026-02-25 11:32:44 +01:00
committed by GitHub
parent 123cd29ffb
commit 603cbdeec5
14 changed files with 29 additions and 29 deletions
+7 -7
View File
@@ -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"
)