mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
500 B
Python
16 lines
500 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
go_library(
|
|
name = "httprule",
|
|
srcs = [
|
|
"compile.go",
|
|
"parse.go",
|
|
"types.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule",
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule",
|
|
deps = ["@com_github_grpc_ecosystem_grpc_gateway_v2//utilities:go_default_library"],
|
|
)
|