small python ray

This commit is contained in:
Barak Michener 2020-09-12 15:57:57 -07:00
commit e02e80708a
15 changed files with 1261 additions and 0 deletions

18
proto/BUILD Normal file
View 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"],
)