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

@@ -7,9 +7,9 @@ import (
"github.com/go-chi/chi/v5"
"github.com/google/uuid"
"github.com/nexavpn/nexavpn/backend/internal/apiutil"
"github.com/nexavpn/nexavpn/backend/internal/audit"
"github.com/nexavpn/nexavpn/backend/internal/requestctx"
"nexavpn/backend/internal/apiutil"
"nexavpn/backend/internal/audit"
"nexavpn/backend/internal/requestctx"
)
type Handler struct {