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,39 @@
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_test",
"go_library",
)
go_test(
name = "go_default_test",
srcs = ["up_test.go"],
embed = [":go_default_library"],
rundir = ".",
tags = ["automanaged"],
)
go_library(
name = "go_default_library",
srcs = ["up.go"],
importmap = "go-common/app/service/main/upcredit/rpc/client",
importpath = "go-common/app/service/main/upcredit/rpc/client",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = ["//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,26 @@
package client
import (
"go-common/library/net/rpc"
)
const (
_appid = "archive.service.upcredit"
)
//Service rpc service
type Service struct {
client *rpc.Client2
}
//RPC interface
type RPC interface {
}
//New create
func New(c *rpc.ClientConfig) (s *Service) {
s = &Service{
client: rpc.NewDiscoveryCli(_appid, c),
}
return
}

View File

@@ -0,0 +1,14 @@
package client
import (
"testing"
"time"
)
func TestRpcClient(t *testing.T) {
var _ = New(nil)
time.Sleep(1 * time.Second)
}