refactor: update module path from github.com/nexavpn/nexavpn/backend to nexavpn/backend

Update go.mod module declaration and all internal imports across the backend codebase to use simplified nexavpn/backend path instead of full GitHub URL.
This commit is contained in:
2026-03-15 16:42:25 +01:00
parent 8f73dd3321
commit 3289da24af
18 changed files with 47 additions and 47 deletions

View File

@@ -5,10 +5,10 @@ import (
"github.com/google/uuid"
"github.com/nexavpn/nexavpn/backend/internal/gateway"
"github.com/nexavpn/nexavpn/backend/internal/ipam"
"github.com/nexavpn/nexavpn/backend/internal/policy"
"github.com/nexavpn/nexavpn/backend/internal/profile"
"nexavpn/backend/internal/gateway"
"nexavpn/backend/internal/ipam"
"nexavpn/backend/internal/policy"
"nexavpn/backend/internal/profile"
)
type Service struct {