...

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

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

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "barcode",
     5    srcs = [
     6        "compose.go",
     7        "emergency.go",
     8        "flow.go",
     9        "flow_code.go",
    10        "scope.go",
    11        "storage.go",
    12        "strategy.go",
    13        "strategy_opaque.go",
    14        "strategy_signed.go",
    15    ],
    16    importpath = "edge-infra.dev/pkg/edge/iam/barcode",
    17    visibility = ["//visibility:public"],
    18    deps = [
    19        "//pkg/edge/iam/apperror",
    20        "//pkg/edge/iam/config",
    21        "//pkg/edge/iam/device",
    22        "//pkg/edge/iam/errors",
    23        "//pkg/edge/iam/profile",
    24        "//pkg/edge/iam/prometheus",
    25        "//pkg/edge/iam/session",
    26        "//pkg/edge/iam/util",
    27        "@com_github_gin_gonic_gin//:gin",
    28        "@com_github_google_uuid//:uuid",
    29        "@com_github_gorilla_sessions//:sessions",
    30        "@com_github_ory_fosite//:fosite",
    31        "@com_github_ory_fosite//compose",
    32        "@com_github_ory_fosite//handler/oauth2",
    33        "@com_github_ory_fosite//handler/openid",
    34        "@com_github_ory_fosite//token/hmac",
    35        "@com_github_ory_x//errorsx",
    36        "@org_golang_x_crypto//bcrypt",
    37    ],
    38)

View as plain text