Skip to content

Commit

Permalink
add wx_payment notify_url
Browse files Browse the repository at this point in the history
  • Loading branch information
sunjiayu committed Jun 14, 2024
1 parent 554bca5 commit d5c18a3
Show file tree
Hide file tree
Showing 5 changed files with 1,381 additions and 1 deletion.
20 changes: 19 additions & 1 deletion BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@com_github_grpc_grpc//bazel:cc_grpc_library.bzl", "cc_grpc_library")
load("@rules_proto//proto:defs.bzl", "proto_library")

package(
default_visibility = ["//visibility:public"],
Expand Down Expand Up @@ -76,3 +76,21 @@ cc_grpc_library(
grpc_only = True,
deps = [":user_cc_proto"],
)

# wx_payment
proto_library(
name = "wx_payment_proto",
srcs = ["wx_payment/wx_payment.proto"],
)

cc_proto_library(
name = "wx_payment_cc_proto",
deps = [":wx_payment_proto"],
)

cc_grpc_library(
name = "wx_payment_cc_grpc",
srcs = [":wx_payment_proto"],
grpc_only = True,
deps = [":wx_payment_cc_proto"],
)
Loading

0 comments on commit d5c18a3

Please sign in to comment.