v1.5.1 增强程序稳定性

This commit is contained in:
robin
2026-03-22 17:37:40 +08:00
parent afbaaa869c
commit 17e182b413
652 changed files with 22949 additions and 34397 deletions

View File

@@ -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_ticket.proto
package pb
@@ -143,22 +143,22 @@ type UserTicketServiceServer interface {
type UnimplementedUserTicketServiceServer struct{}
func (UnimplementedUserTicketServiceServer) CreateUserTicket(context.Context, *CreateUserTicketRequest) (*CreateUserTicketResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUserTicket not implemented")
return nil, status.Error(codes.Unimplemented, "method CreateUserTicket not implemented")
}
func (UnimplementedUserTicketServiceServer) UpdateUserTicket(context.Context, *UpdateUserTicketRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserTicket not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateUserTicket not implemented")
}
func (UnimplementedUserTicketServiceServer) DeleteUserTicket(context.Context, *DeleteUserTicketRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteUserTicket not implemented")
return nil, status.Error(codes.Unimplemented, "method DeleteUserTicket not implemented")
}
func (UnimplementedUserTicketServiceServer) CountUserTickets(context.Context, *CountUserTicketsRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountUserTickets not implemented")
return nil, status.Error(codes.Unimplemented, "method CountUserTickets not implemented")
}
func (UnimplementedUserTicketServiceServer) ListUserTickets(context.Context, *ListUserTicketsRequest) (*ListUserTicketsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListUserTickets not implemented")
return nil, status.Error(codes.Unimplemented, "method ListUserTickets not implemented")
}
func (UnimplementedUserTicketServiceServer) FindUserTicket(context.Context, *FindUserTicketRequest) (*FindUserTicketResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindUserTicket not implemented")
return nil, status.Error(codes.Unimplemented, "method FindUserTicket not implemented")
}
func (UnimplementedUserTicketServiceServer) testEmbeddedByValue() {}
@@ -170,7 +170,7 @@ type UnsafeUserTicketServiceServer interface {
}
func RegisterUserTicketServiceServer(s grpc.ServiceRegistrar, srv UserTicketServiceServer) {
// If the following call pancis, it indicates UnimplementedUserTicketServiceServer was
// If the following call panics, it indicates UnimplementedUserTicketServiceServer 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.