small python ray
This commit is contained in:
commit
e02e80708a
15 changed files with 1261 additions and 0 deletions
18
proto/BUILD
Normal file
18
proto/BUILD
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
load("@rules_proto_grpc//python:defs.bzl", "python_grpc_compile")
|
||||
|
||||
proto_library(
|
||||
name = "task_proto",
|
||||
srcs = [
|
||||
"task.proto",
|
||||
],
|
||||
deps = [
|
||||
"@com_google_protobuf//:any_proto",
|
||||
],
|
||||
)
|
||||
|
||||
python_grpc_compile(
|
||||
name = "task_proto_grpc_py",
|
||||
deps = [":task_proto"],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue