mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
433 B
Python
16 lines
433 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "internal",
|
||
|
srcs = [
|
||
|
"doc.go",
|
||
|
"oauth2.go",
|
||
|
"token.go",
|
||
|
"transport.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/golang.org/x/oauth2/internal",
|
||
|
importpath = "golang.org/x/oauth2/internal",
|
||
|
visibility = ["//vendor/golang.org/x/oauth2:__subpackages__"],
|
||
|
deps = ["@org_golang_x_net//context/ctxhttp"],
|
||
|
)
|