Update import paths to use the full module path for consistency

This commit is contained in:
anonpenguin 2025-08-03 16:34:02 +03:00
parent a6aa516d74
commit 116885e6d7
4 changed files with 9 additions and 9 deletions

View File

@ -10,9 +10,9 @@ import (
"path/filepath" "path/filepath"
"syscall" "syscall"
"network/pkg/config" "git.debros.io/DeBros/network/pkg/config"
"network/pkg/logging" "git.debros.io/DeBros/network/pkg/logging"
"network/pkg/node" "git.debros.io/DeBros/network/pkg/node"
) )
func main() { func main() {

2
go.mod
View File

@ -1,4 +1,4 @@
module network module git.debros.io/DeBros/network
go 1.23.8 go 1.23.8

View File

@ -12,7 +12,7 @@ import (
"github.com/rqlite/gorqlite" "github.com/rqlite/gorqlite"
"go.uber.org/zap" "go.uber.org/zap"
"network/pkg/config" "git.debros.io/DeBros/network/pkg/config"
) )
// RQLiteManager manages an RQLite node instance // RQLiteManager manages an RQLite node instance

View File

@ -20,10 +20,10 @@ import (
"github.com/multiformats/go-multiaddr" "github.com/multiformats/go-multiaddr"
"go.uber.org/zap" "go.uber.org/zap"
"network/pkg/config" "git.debros.io/DeBros/network/pkg/config"
"network/pkg/database" "git.debros.io/DeBros/network/pkg/database"
"network/pkg/logging" "git.debros.io/DeBros/network/pkg/logging"
"network/pkg/storage" "git.debros.io/DeBros/network/pkg/storage"
) )
// Node represents a network node with RQLite database // Node represents a network node with RQLite database