summaryrefslogtreecommitdiff
path: root/app/app.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-04-14 09:40:52 -0600
committermo khan <mo@mokhan.ca>2025-04-14 09:40:52 -0600
commit37ba0e25b1760778d1edda25b84ff43023670eae (patch)
tree66924a00de96ab85f7a2aaf55954db41e9c93c19 /app/app.go
parent0bef608297d7def2a18d054e7230fe0e0a3710a7 (diff)
fix: update go mod namespace
Diffstat (limited to 'app/app.go')
-rw-r--r--app/app.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/app.go b/app/app.go
index 3edd5f3..0d3dd05 100644
--- a/app/app.go
+++ b/app/app.go
@@ -4,10 +4,10 @@ import (
"net/http"
"github.com/xlgmokha/x/pkg/ioc"
- "gitlab.com/mokhax/sparkled/app/controllers/health"
- "gitlab.com/mokhax/sparkled/app/controllers/sparkles"
- "gitlab.com/mokhax/sparkled/pkg/db"
- "gitlab.com/mokhax/sparkled/pkg/web"
+ "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/health"
+ "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/sparkles"
+ "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/db"
+ "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/web"
)
func New() http.Handler {