mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
491 B
Python
15 lines
491 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "authzed-go",
|
|
srcs = ["client.go"],
|
|
importmap = "peridot.resf.org/vendor/github.com/authzed/authzed-go/v1",
|
|
importpath = "github.com/authzed/authzed-go/v1",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/authzed/authzed-go/proto/authzed/api/v1:api",
|
|
"//vendor/github.com/jzelinskie/stringz",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
],
|
|
)
|