From 8e211ff4bac177465fb9adc0bfa3744ca4e1da47 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 15 May 2025 09:12:22 -0600 Subject: refactor: delete code that is now handled by envoy --- app/app.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'app/app.go') diff --git a/app/app.go b/app/app.go index d959c4d..701a7f7 100644 --- a/app/app.go +++ b/app/app.go @@ -9,7 +9,6 @@ import ( "github.com/xlgmokha/x/pkg/log" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/dashboard" "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/sessions" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/controllers/sparkles" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/domain" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/middleware" @@ -26,7 +25,6 @@ func New(rootDir string) http.Handler { mountable := []Mountable{ ioc.MustResolve[*dashboard.Controller](ioc.Default), ioc.MustResolve[*health.Controller](ioc.Default), - ioc.MustResolve[*sessions.Controller](ioc.Default), ioc.MustResolve[*sparkles.Controller](ioc.Default), } for _, m := range mountable { -- cgit v1.2.3