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.
		
		
		
		
		
			
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"flag"
 | 
						|
	"fmt"
 | 
						|
	"live-service/app/user_center/rpc/internal/config"
 | 
						|
	"live-service/app/user_center/rpc/internal/logic/platform_user"
 | 
						|
	"live-service/app/user_center/rpc/internal/logic/rank"
 | 
						|
	"live-service/app/user_center/rpc/internal/server"
 | 
						|
	"live-service/app/user_center/rpc/internal/svc"
 | 
						|
	"live-service/app/user_center/rpc/pb"
 | 
						|
 | 
						|
	"github.com/zeromicro/go-zero/core/conf"
 | 
						|
	"github.com/zeromicro/go-zero/core/service"
 | 
						|
	"github.com/zeromicro/go-zero/zrpc"
 | 
						|
	"google.golang.org/grpc"
 | 
						|
	"google.golang.org/grpc/reflection"
 | 
						|
)
 | 
						|
 | 
						|
var configFile = flag.String("f", "etc/user_center.yaml", "the config file")
 | 
						|
 | 
						|
func main() {
 | 
						|
	flag.Parse()
 | 
						|
 | 
						|
	var c config.Config
 | 
						|
	conf.MustLoad(*configFile, &c)
 | 
						|
	ctx := svc.NewServiceContext(c)
 | 
						|
	svr := server.NewUserCenterServer(ctx)
 | 
						|
 | 
						|
	if c.UserRetriever.Enabled {
 | 
						|
		platformUserRetriever := platform_user.NewUserRetriever(ctx)
 | 
						|
		platformUserRetriever.Scheduler()
 | 
						|
	}
 | 
						|
 | 
						|
	if c.Rank.Enabled {
 | 
						|
		rank.InitRankJob(ctx)
 | 
						|
	}
 | 
						|
 | 
						|
	s := zrpc.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
 | 
						|
		pb.RegisterUserCenterServer(grpcServer, svr)
 | 
						|
 | 
						|
		if c.Mode == service.DevMode || c.Mode == service.TestMode {
 | 
						|
			reflection.Register(grpcServer)
 | 
						|
		}
 | 
						|
	})
 | 
						|
	defer s.Stop()
 | 
						|
 | 
						|
	fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
 | 
						|
	s.Start()
 | 
						|
}
 |