使用数据库存储SESSION

This commit is contained in:
GoEdgeLab
2023-02-04 15:18:26 +08:00
parent 811eb098ed
commit c86fb9a705
3 changed files with 83 additions and 2 deletions

View File

@@ -407,6 +407,10 @@ func (this *RPCClient) LoginRPC() pb.LoginServiceClient {
return pb.NewLoginServiceClient(this.pickConn())
}
func (this *RPCClient) LoginSessionRPC() pb.LoginSessionServiceClient {
return pb.NewLoginSessionServiceClient(this.pickConn())
}
func (this *RPCClient) NodeTaskRPC() pb.NodeTaskServiceClient {
return pb.NewNodeTaskServiceClient(this.pickConn())
}