v1.5.1 增强程序稳定性
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v6.33.2
|
||||
// - protoc-gen-go-grpc v1.6.1
|
||||
// - protoc v3.19.6
|
||||
// source: service_user_account.proto
|
||||
|
||||
package pb
|
||||
@@ -128,19 +128,19 @@ type UserAccountServiceServer interface {
|
||||
type UnimplementedUserAccountServiceServer struct{}
|
||||
|
||||
func (UnimplementedUserAccountServiceServer) CountUserAccounts(context.Context, *CountUserAccountsRequest) (*RPCCountResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method CountUserAccounts not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method CountUserAccounts not implemented")
|
||||
}
|
||||
func (UnimplementedUserAccountServiceServer) ListUserAccounts(context.Context, *ListUserAccountsRequest) (*ListUserAccountsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method ListUserAccounts not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method ListUserAccounts not implemented")
|
||||
}
|
||||
func (UnimplementedUserAccountServiceServer) FindEnabledUserAccountWithUserId(context.Context, *FindEnabledUserAccountWithUserIdRequest) (*FindEnabledUserAccountWithUserIdResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method FindEnabledUserAccountWithUserId not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method FindEnabledUserAccountWithUserId not implemented")
|
||||
}
|
||||
func (UnimplementedUserAccountServiceServer) FindEnabledUserAccount(context.Context, *FindEnabledUserAccountRequest) (*FindEnabledUserAccountResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method FindEnabledUserAccount not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method FindEnabledUserAccount not implemented")
|
||||
}
|
||||
func (UnimplementedUserAccountServiceServer) UpdateUserAccount(context.Context, *UpdateUserAccountRequest) (*RPCSuccess, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserAccount not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method UpdateUserAccount not implemented")
|
||||
}
|
||||
func (UnimplementedUserAccountServiceServer) testEmbeddedByValue() {}
|
||||
|
||||
@@ -152,7 +152,7 @@ type UnsafeUserAccountServiceServer interface {
|
||||
}
|
||||
|
||||
func RegisterUserAccountServiceServer(s grpc.ServiceRegistrar, srv UserAccountServiceServer) {
|
||||
// If the following call pancis, it indicates UnimplementedUserAccountServiceServer was
|
||||
// If the following call panics, it indicates UnimplementedUserAccountServiceServer was
|
||||
// embedded by pointer and is nil. This will cause panics if an
|
||||
// unimplemented method is ever invoked, so we test this at initialization
|
||||
// time to prevent it from happening at runtime later due to I/O.
|
||||
|
||||
Reference in New Issue
Block a user