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_script.proto
package pb
@@ -143,22 +143,22 @@ type UserScriptServiceServer interface {
type UnimplementedUserScriptServiceServer struct{}
func (UnimplementedUserScriptServiceServer) FindUserScript(context.Context, *FindUserScriptRequest) (*FindUserScriptResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindUserScript not implemented")
return nil, status.Error(codes.Unimplemented, "method FindUserScript not implemented")
}
func (UnimplementedUserScriptServiceServer) FindUserScriptWithMD5(context.Context, *FindUserScriptWithMD5Request) (*FindUserScriptWithMD5Response, error) {
return nil, status.Errorf(codes.Unimplemented, "method FindUserScriptWithMD5 not implemented")
return nil, status.Error(codes.Unimplemented, "method FindUserScriptWithMD5 not implemented")
}
func (UnimplementedUserScriptServiceServer) CountUserScripts(context.Context, *CountUserScriptsRequest) (*RPCCountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CountUserScripts not implemented")
return nil, status.Error(codes.Unimplemented, "method CountUserScripts not implemented")
}
func (UnimplementedUserScriptServiceServer) ListUserScripts(context.Context, *ListUserScriptsRequest) (*ListUserScriptsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListUserScripts not implemented")
return nil, status.Error(codes.Unimplemented, "method ListUserScripts not implemented")
}
func (UnimplementedUserScriptServiceServer) PassUserScript(context.Context, *PassUserScriptRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method PassUserScript not implemented")
return nil, status.Error(codes.Unimplemented, "method PassUserScript not implemented")
}
func (UnimplementedUserScriptServiceServer) RejectUserScript(context.Context, *RejectUserScriptRequest) (*RPCSuccess, error) {
return nil, status.Errorf(codes.Unimplemented, "method RejectUserScript not implemented")
return nil, status.Error(codes.Unimplemented, "method RejectUserScript not implemented")
}
func (UnimplementedUserScriptServiceServer) testEmbeddedByValue() {}
@@ -170,7 +170,7 @@ type UnsafeUserScriptServiceServer interface {
}
func RegisterUserScriptServiceServer(s grpc.ServiceRegistrar, srv UserScriptServiceServer) {
// If the following call pancis, it indicates UnimplementedUserScriptServiceServer was
// If the following call panics, it indicates UnimplementedUserScriptServiceServer 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.