Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_test",
"go_library",
)
go_test(
name = "go_default_test",
srcs = ["client_test.go"],
embed = [":go_default_library"],
rundir = ".",
tags = ["automanaged"],
)
go_library(
name = "go_default_library",
srcs = ["client.go"],
importpath = "go-common/app/service/main/sms/api/gorpc",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = [
"//app/service/main/sms/model:go_default_library",
"//library/net/rpc:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)

View File

@@ -0,0 +1,43 @@
package gorpc
import (
"context"
"go-common/app/service/main/sms/model"
"go-common/library/net/rpc"
)
const (
_appid = "sms.service"
_send = "RPC.send"
_sendBatch = "RPC.sendBatch"
)
var (
_noRes = &struct{}{}
)
// Service struct info.
type Service struct {
client *rpc.Client2
}
// New new service instance and return.
func New(c *rpc.ClientConfig) (s *Service) {
s = &Service{}
s.client = rpc.NewDiscoveryCli(_appid, c)
return
}
// Send send sms
func (s *Service) Send(c context.Context, arg *model.ArgSend) (err error) {
err = s.client.Call(c, _send, arg, _noRes)
return
}
// SendBatch batch send sms
func (s *Service) SendBatch(c context.Context, arg *model.ArgSendBatch) (err error) {
err = s.client.Call(c, _sendBatch, arg, _noRes)
return
}

View File

@@ -0,0 +1 @@
package gorpc