// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.3.0 // - protoc (unknown) // source: api/v2/shortcut_service.proto package apiv2 import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.32.0 or later. const _ = grpc.SupportPackageIsVersion7 const ( ShortcutService_ListShortcuts_FullMethodName = "/slash.api.v2.ShortcutService/ListShortcuts" ShortcutService_GetShortcut_FullMethodName = "/slash.api.v2.ShortcutService/GetShortcut" ) // ShortcutServiceClient is the client API for ShortcutService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type ShortcutServiceClient interface { ListShortcuts(ctx context.Context, in *ListShortcutsRequest, opts ...grpc.CallOption) (*ListShortcutsResponse, error) // GetShortcut returns a shortcut by name. GetShortcut(ctx context.Context, in *GetShortcutRequest, opts ...grpc.CallOption) (*GetShortcutResponse, error) } type shortcutServiceClient struct { cc grpc.ClientConnInterface } func NewShortcutServiceClient(cc grpc.ClientConnInterface) ShortcutServiceClient { return &shortcutServiceClient{cc} } func (c *shortcutServiceClient) ListShortcuts(ctx context.Context, in *ListShortcutsRequest, opts ...grpc.CallOption) (*ListShortcutsResponse, error) { out := new(ListShortcutsResponse) err := c.cc.Invoke(ctx, ShortcutService_ListShortcuts_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *shortcutServiceClient) GetShortcut(ctx context.Context, in *GetShortcutRequest, opts ...grpc.CallOption) (*GetShortcutResponse, error) { out := new(GetShortcutResponse) err := c.cc.Invoke(ctx, ShortcutService_GetShortcut_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } // ShortcutServiceServer is the server API for ShortcutService service. // All implementations must embed UnimplementedShortcutServiceServer // for forward compatibility type ShortcutServiceServer interface { ListShortcuts(context.Context, *ListShortcutsRequest) (*ListShortcutsResponse, error) // GetShortcut returns a shortcut by name. GetShortcut(context.Context, *GetShortcutRequest) (*GetShortcutResponse, error) mustEmbedUnimplementedShortcutServiceServer() } // UnimplementedShortcutServiceServer must be embedded to have forward compatible implementations. type UnimplementedShortcutServiceServer struct { } func (UnimplementedShortcutServiceServer) ListShortcuts(context.Context, *ListShortcutsRequest) (*ListShortcutsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ListShortcuts not implemented") } func (UnimplementedShortcutServiceServer) GetShortcut(context.Context, *GetShortcutRequest) (*GetShortcutResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetShortcut not implemented") } func (UnimplementedShortcutServiceServer) mustEmbedUnimplementedShortcutServiceServer() {} // UnsafeShortcutServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ShortcutServiceServer will // result in compilation errors. type UnsafeShortcutServiceServer interface { mustEmbedUnimplementedShortcutServiceServer() } func RegisterShortcutServiceServer(s grpc.ServiceRegistrar, srv ShortcutServiceServer) { s.RegisterService(&ShortcutService_ServiceDesc, srv) } func _ShortcutService_ListShortcuts_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListShortcutsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ShortcutServiceServer).ListShortcuts(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ShortcutService_ListShortcuts_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ShortcutServiceServer).ListShortcuts(ctx, req.(*ListShortcutsRequest)) } return interceptor(ctx, in, info, handler) } func _ShortcutService_GetShortcut_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetShortcutRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ShortcutServiceServer).GetShortcut(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ShortcutService_GetShortcut_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ShortcutServiceServer).GetShortcut(ctx, req.(*GetShortcutRequest)) } return interceptor(ctx, in, info, handler) } // ShortcutService_ServiceDesc is the grpc.ServiceDesc for ShortcutService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ShortcutService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "slash.api.v2.ShortcutService", HandlerType: (*ShortcutServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "ListShortcuts", Handler: _ShortcutService_ListShortcuts_Handler, }, { MethodName: "GetShortcut", Handler: _ShortcutService_GetShortcut_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "api/v2/shortcut_service.proto", }