load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "session", srcs = [ "login.go", "session.go", ], importpath = "edge-infra.dev/pkg/edge/iam/session", visibility = ["//visibility:public"], deps = [ "//pkg/edge/iam/config", "@com_github_mohae_deepcopy//:deepcopy", "@com_github_ory_fosite//:fosite", "@com_github_ory_fosite//handler/oauth2", "@com_github_ory_fosite//handler/openid", "@com_github_ory_fosite//token/jwt", ], )