load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "barcode", srcs = [ "compose.go", "emergency.go", "flow.go", "flow_code.go", "scope.go", "storage.go", "strategy.go", "strategy_opaque.go", "strategy_signed.go", ], importpath = "edge-infra.dev/pkg/edge/iam/barcode", visibility = ["//visibility:public"], deps = [ "//pkg/edge/iam/apperror", "//pkg/edge/iam/config", "//pkg/edge/iam/device", "//pkg/edge/iam/errors", "//pkg/edge/iam/profile", "//pkg/edge/iam/prometheus", "//pkg/edge/iam/session", "//pkg/edge/iam/util", "@com_github_gin_gonic_gin//:gin", "@com_github_google_uuid//:uuid", "@com_github_gorilla_sessions//:sessions", "@com_github_ory_fosite//:fosite", "@com_github_ory_fosite//compose", "@com_github_ory_fosite//handler/oauth2", "@com_github_ory_fosite//handler/openid", "@com_github_ory_fosite//token/hmac", "@com_github_ory_x//errorsx", "@org_golang_x_crypto//bcrypt", ], )