You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
851 B
Go
39 lines
851 B
Go
// Code generated by goctl. DO NOT EDIT!
|
|
// Source: check.proto
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
|
|
"bookstore/rpc/check/internal/config"
|
|
"bookstore/rpc/check/internal/server"
|
|
"bookstore/rpc/check/internal/svc"
|
|
check "bookstore/rpc/check/pb"
|
|
|
|
"github.com/tal-tech/go-zero/core/conf"
|
|
"github.com/tal-tech/go-zero/core/logx"
|
|
"github.com/tal-tech/go-zero/zrpc"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
var configFile = flag.String("f", "etc/check.yaml", "the config file")
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
var c config.Config
|
|
conf.MustLoad(*configFile, &c)
|
|
ctx := svc.NewServiceContext(c)
|
|
checkerSrv := server.NewCheckerServer(ctx)
|
|
|
|
s, err := zrpc.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
|
|
check.RegisterCheckerServer(grpcServer, checkerSrv)
|
|
})
|
|
logx.Must(err)
|
|
|
|
fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
|
|
s.Start()
|
|
}
|