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_ip_item.proto
package pb
@@ -293,52 +293,52 @@ type IPItemServiceServer interface {
type UnimplementedIPItemServiceServer struct{}
func (UnimplementedIPItemServiceServer) CreateIPItem(context.Context, *CreateIPItemRequest) (*CreateIPItemResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateIPItem not implemented")
return nil, status.Error(codes.Unimplemented, "method CreateIPItem not implemented")
}
func (UnimplementedIPItemServiceServer) CreateIPItems(context.Context, *CreateIPItemsRequest) (*CreateIPItemsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateIPItems not implemented")
return nil, status.Error(codes.Unimplemented, "method CreateIPItems not implemented")
}
func (UnimplementedIPItemServiceServer) UpdateIPItem(context.Context, *UpdateIPItemRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateIPItem not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateIPItem not implemented")
}
func (UnimplementedIPItemServiceServer) DeleteIPItem(context.Context, *DeleteIPItemRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteIPItem not implemented")
return nil, status.Error(codes.Unimplemented, "method DeleteIPItem not implemented")
}
func (UnimplementedIPItemServiceServer) DeleteIPItems(context.Context, *DeleteIPItemsRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteIPItems not implemented")
return nil, status.Error(codes.Unimplemented, "method DeleteIPItems not implemented")
}
func (UnimplementedIPItemServiceServer) CountIPItemsWithListId(context.Context, *CountIPItemsWithListIdRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountIPItemsWithListId not implemented")
return nil, status.Error(codes.Unimplemented, "method CountIPItemsWithListId not implemented")
}
func (UnimplementedIPItemServiceServer) ListIPItemsWithListId(context.Context, *ListIPItemsWithListIdRequest) (*ListIPItemsWithListIdResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListIPItemsWithListId not implemented")
return nil, status.Error(codes.Unimplemented, "method ListIPItemsWithListId not implemented")
}
func (UnimplementedIPItemServiceServer) FindEnabledIPItem(context.Context, *FindEnabledIPItemRequest) (*FindEnabledIPItemResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindEnabledIPItem not implemented")
return nil, status.Error(codes.Unimplemented, "method FindEnabledIPItem not implemented")
}
func (UnimplementedIPItemServiceServer) ListIPItemsAfterVersion(context.Context, *ListIPItemsAfterVersionRequest) (*ListIPItemsAfterVersionResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListIPItemsAfterVersion not implemented")
return nil, status.Error(codes.Unimplemented, "method ListIPItemsAfterVersion not implemented")
}
func (UnimplementedIPItemServiceServer) CheckIPItemStatus(context.Context, *CheckIPItemStatusRequest) (*CheckIPItemStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CheckIPItemStatus not implemented")
return nil, status.Error(codes.Unimplemented, "method CheckIPItemStatus not implemented")
}
func (UnimplementedIPItemServiceServer) ExistsEnabledIPItem(context.Context, *ExistsEnabledIPItemRequest) (*ExistsEnabledIPItemResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ExistsEnabledIPItem not implemented")
return nil, status.Error(codes.Unimplemented, "method ExistsEnabledIPItem not implemented")
}
func (UnimplementedIPItemServiceServer) CountAllEnabledIPItems(context.Context, *CountAllEnabledIPItemsRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountAllEnabledIPItems not implemented")
return nil, status.Error(codes.Unimplemented, "method CountAllEnabledIPItems not implemented")
}
func (UnimplementedIPItemServiceServer) ListAllEnabledIPItems(context.Context, *ListAllEnabledIPItemsRequest) (*ListAllEnabledIPItemsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListAllEnabledIPItems not implemented")
return nil, status.Error(codes.Unimplemented, "method ListAllEnabledIPItems not implemented")
}
func (UnimplementedIPItemServiceServer) ListAllIPItemIds(context.Context, *ListAllIPItemIdsRequest) (*ListAllIPItemIdsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListAllIPItemIds not implemented")
return nil, status.Error(codes.Unimplemented, "method ListAllIPItemIds not implemented")
}
func (UnimplementedIPItemServiceServer) UpdateIPItemsRead(context.Context, *UpdateIPItemsReadRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateIPItemsRead not implemented")
return nil, status.Error(codes.Unimplemented, "method UpdateIPItemsRead not implemented")
}
func (UnimplementedIPItemServiceServer) FindServerIdWithIPItemId(context.Context, *FindServerIdWithIPItemIdRequest) (*FindServerIdWithIPItemIdResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindServerIdWithIPItemId not implemented")
return nil, status.Error(codes.Unimplemented, "method FindServerIdWithIPItemId not implemented")
}
func (UnimplementedIPItemServiceServer) testEmbeddedByValue() {}
@@ -350,7 +350,7 @@ type UnsafeIPItemServiceServer interface {
}
func RegisterIPItemServiceServer(s grpc.ServiceRegistrar, srv IPItemServiceServer) {
// If the following call pancis, it indicates UnimplementedIPItemServiceServer was
// If the following call panics, it indicates UnimplementedIPItemServiceServer 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.