chore: Remove unnecessary _ imports (#64158)

These imports don't seem to have side-effects so dropping them to keep the dependency graph simple.

Test plan: E2E CI still passes.
This commit is contained in:
Erik Seliger 2024-08-06 13:28:29 +02:00 committed by GitHub
parent 6b98c253ab
commit ff52b14dd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 4 deletions

View File

@ -8,7 +8,6 @@ go_library(
visibility = ["//cmd/frontend:__subpackages__"],
deps = [
"//cmd/frontend/enterprise",
"//cmd/frontend/internal/auth",
"//cmd/frontend/internal/dotcom/productsubscription",
"//cmd/frontend/internal/licensing/enforcement",
"//cmd/frontend/internal/licensing/resolvers",

View File

@ -6,7 +6,6 @@ import (
"github.com/sourcegraph/log"
"github.com/sourcegraph/sourcegraph/cmd/frontend/enterprise"
_ "github.com/sourcegraph/sourcegraph/cmd/frontend/internal/auth"
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/dotcom/productsubscription"
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/licensing/enforcement"
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/licensing/resolvers"

View File

@ -18,7 +18,6 @@ go_library(
deps = [
"//cmd/frontend/enterprise",
"//cmd/frontend/graphqlbackend",
"//cmd/frontend/internal/auth",
"//internal/actor",
"//internal/codeintel",
"//internal/conf",

View File

@ -6,7 +6,6 @@ import (
"github.com/sourcegraph/log"
"github.com/sourcegraph/sourcegraph/cmd/frontend/enterprise"
_ "github.com/sourcegraph/sourcegraph/cmd/frontend/internal/auth"
"github.com/sourcegraph/sourcegraph/internal/codeintel"
"github.com/sourcegraph/sourcegraph/internal/conf"
"github.com/sourcegraph/sourcegraph/internal/conf/conftypes"