...

Text file src/edge-infra.dev/pkg/edge/auth-proxy/store/BUILD.bazel

Documentation: edge-infra.dev/pkg/edge/auth-proxy/store

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "store",
     5    srcs = [
     6        "audit.go",
     7        "cleanup.go",
     8        "session.go",
     9        "store.go",
    10    ],
    11    importpath = "edge-infra.dev/pkg/edge/auth-proxy/store",
    12    visibility = ["//visibility:public"],
    13    deps = [
    14        "//pkg/edge/audit",
    15        "//pkg/edge/auth-proxy/types",
    16        "@com_github_gin_contrib_sessions//:sessions",
    17        "@com_github_go_logr_logr//:logr",
    18        "@com_github_gorilla_securecookie//:securecookie",
    19        "@com_github_gorilla_sessions//:sessions",
    20        "@com_github_lib_pq//:pq",
    21    ],
    22)

View as plain text