...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "session",
5 srcs = [
6 "login.go",
7 "session.go",
8 ],
9 importpath = "edge-infra.dev/pkg/edge/iam/session",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/edge/iam/config",
13 "@com_github_mohae_deepcopy//:deepcopy",
14 "@com_github_ory_fosite//:fosite",
15 "@com_github_ory_fosite//handler/oauth2",
16 "@com_github_ory_fosite//handler/openid",
17 "@com_github_ory_fosite//token/jwt",
18 ],
19)
View as plain text