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_acme_user.proto
package pb
@@ -158,25 +158,25 @@ type ACMEUserServiceServer interface {
type UnimplementedACMEUserServiceServer struct{}
func (UnimplementedACMEUserServiceServer) CreateACMEUser(context.Context, *CreateACMEUserRequest) (*CreateACMEUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateACMEUser not implemented")
return nil, status.Error(codes.Unimplemented, "method CreateACMEUser not implemented")
}
func (UnimplementedACMEUserServiceServer) UpdateACMEUser(context.Context, *UpdateACMEUserRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateACMEUser not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateACMEUser not implemented")
}
func (UnimplementedACMEUserServiceServer) DeleteACMEUser(context.Context, *DeleteACMEUserRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteACMEUser not implemented")
return nil, status.Error(codes.Unimplemented, "method DeleteACMEUser not implemented")
}
func (UnimplementedACMEUserServiceServer) CountACMEUsers(context.Context, *CountAcmeUsersRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountACMEUsers not implemented")
return nil, status.Error(codes.Unimplemented, "method CountACMEUsers not implemented")
}
func (UnimplementedACMEUserServiceServer) ListACMEUsers(context.Context, *ListACMEUsersRequest) (*ListACMEUsersResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListACMEUsers not implemented")
return nil, status.Error(codes.Unimplemented, "method ListACMEUsers not implemented")
}
func (UnimplementedACMEUserServiceServer) FindEnabledACMEUser(context.Context, *FindEnabledACMEUserRequest) (*FindEnabledACMEUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindEnabledACMEUser not implemented")
return nil, status.Error(codes.Unimplemented, "method FindEnabledACMEUser not implemented")
}
func (UnimplementedACMEUserServiceServer) FindAllACMEUsers(context.Context, *FindAllACMEUsersRequest) (*FindAllACMEUsersResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindAllACMEUsers not implemented")
return nil, status.Error(codes.Unimplemented, "method FindAllACMEUsers not implemented")
}
func (UnimplementedACMEUserServiceServer) testEmbeddedByValue() {}
@@ -188,7 +188,7 @@ type UnsafeACMEUserServiceServer interface {
}
func RegisterACMEUserServiceServer(s grpc.ServiceRegistrar, srv ACMEUserServiceServer) {
// If the following call pancis, it indicates UnimplementedACMEUserServiceServer was
// If the following call panics, it indicates UnimplementedACMEUserServiceServer 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.