mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
415 B
Python
15 lines
415 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "jwt",
|
|
srcs = ["jwt.go"],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/oauth2/jwt",
|
|
importpath = "golang.org/x/oauth2/jwt",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/golang.org/x/oauth2",
|
|
"//vendor/golang.org/x/oauth2/internal",
|
|
"//vendor/golang.org/x/oauth2/jws",
|
|
],
|
|
)
|