...

Text file src/edge-infra.dev/pkg/edge/iam/verify/BUILD.bazel

Documentation: edge-infra.dev/pkg/edge/iam/verify

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "verify",
     5    srcs = [
     6        "reverseProxy.go",
     7        "verifier.go",
     8        "verifier_client.go",
     9        "verifier_config.go",
    10        "verifier_print_barcode.go",
    11        "verifier_scan_barcode.go",
    12        "verifier_start.go",
    13        "verifier_start_with_options.go",
    14        "verifier_ui_page.go",
    15        "verifier_view_barcode.go",
    16        "verify_callback.go",
    17    ],
    18    importpath = "edge-infra.dev/pkg/edge/iam/verify",
    19    visibility = ["//visibility:public"],
    20    deps = [
    21        "//pkg/edge/iam/log",
    22        "//pkg/edge/iam/middleware",
    23        "//pkg/edge/iam/util",
    24        "//pkg/edge/iam/verify/templates",
    25        "//pkg/lib/logging",
    26        "@com_github_alecthomas_chroma//formatters/html",
    27        "@com_github_alecthomas_chroma//lexers",
    28        "@com_github_alecthomas_chroma//styles",
    29        "@com_github_boombuler_barcode//:barcode",
    30        "@com_github_boombuler_barcode//code128",
    31        "@com_github_boombuler_barcode//qr",
    32        "@com_github_coreos_go_oidc_v3//oidc",
    33        "@com_github_gin_gonic_gin//:gin",
    34        "@com_github_go_logr_logr//:logr",
    35        "@com_github_golang_jwt_jwt_v4//:jwt",
    36        "@com_github_micahparks_keyfunc//:keyfunc",
    37        "@org_golang_x_oauth2//:oauth2",
    38    ],
    39)

View as plain text