2024-05-17 07:59:51 +00:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v5.26.1
// source: attachments.proto
package proto
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
2024-05-18 08:54:42 +00:00
emptypb "google.golang.org/protobuf/types/known/emptypb"
2024-05-17 07:59:51 +00:00
)
// 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 (
2024-05-18 08:54:42 +00:00
Attachments_GetAttachment_FullMethodName = "/proto.Attachments/GetAttachment"
Attachments_CheckAttachmentExists_FullMethodName = "/proto.Attachments/CheckAttachmentExists"
2024-05-17 07:59:51 +00:00
)
// AttachmentsClient is the client API for Attachments 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 AttachmentsClient interface {
GetAttachment ( ctx context . Context , in * AttachmentLookupRequest , opts ... grpc . CallOption ) ( * Attachment , error )
2024-05-18 08:54:42 +00:00
CheckAttachmentExists ( ctx context . Context , in * AttachmentLookupRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error )
2024-05-17 07:59:51 +00:00
}
type attachmentsClient struct {
cc grpc . ClientConnInterface
}
func NewAttachmentsClient ( cc grpc . ClientConnInterface ) AttachmentsClient {
return & attachmentsClient { cc }
}
func ( c * attachmentsClient ) GetAttachment ( ctx context . Context , in * AttachmentLookupRequest , opts ... grpc . CallOption ) ( * Attachment , error ) {
out := new ( Attachment )
err := c . cc . Invoke ( ctx , Attachments_GetAttachment_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-05-18 08:54:42 +00:00
func ( c * attachmentsClient ) CheckAttachmentExists ( ctx context . Context , in * AttachmentLookupRequest , opts ... grpc . CallOption ) ( * emptypb . Empty , error ) {
out := new ( emptypb . Empty )
err := c . cc . Invoke ( ctx , Attachments_CheckAttachmentExists_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-05-17 07:59:51 +00:00
// AttachmentsServer is the server API for Attachments service.
// All implementations must embed UnimplementedAttachmentsServer
// for forward compatibility
type AttachmentsServer interface {
GetAttachment ( context . Context , * AttachmentLookupRequest ) ( * Attachment , error )
2024-05-18 08:54:42 +00:00
CheckAttachmentExists ( context . Context , * AttachmentLookupRequest ) ( * emptypb . Empty , error )
2024-05-17 07:59:51 +00:00
mustEmbedUnimplementedAttachmentsServer ( )
}
// UnimplementedAttachmentsServer must be embedded to have forward compatible implementations.
type UnimplementedAttachmentsServer struct {
}
func ( UnimplementedAttachmentsServer ) GetAttachment ( context . Context , * AttachmentLookupRequest ) ( * Attachment , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method GetAttachment not implemented" )
}
2024-05-18 08:54:42 +00:00
func ( UnimplementedAttachmentsServer ) CheckAttachmentExists ( context . Context , * AttachmentLookupRequest ) ( * emptypb . Empty , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method CheckAttachmentExists not implemented" )
}
2024-05-17 07:59:51 +00:00
func ( UnimplementedAttachmentsServer ) mustEmbedUnimplementedAttachmentsServer ( ) { }
// UnsafeAttachmentsServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to AttachmentsServer will
// result in compilation errors.
type UnsafeAttachmentsServer interface {
mustEmbedUnimplementedAttachmentsServer ( )
}
func RegisterAttachmentsServer ( s grpc . ServiceRegistrar , srv AttachmentsServer ) {
s . RegisterService ( & Attachments_ServiceDesc , srv )
}
func _Attachments_GetAttachment_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( AttachmentLookupRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AttachmentsServer ) . GetAttachment ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Attachments_GetAttachment_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AttachmentsServer ) . GetAttachment ( ctx , req . ( * AttachmentLookupRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-05-18 08:54:42 +00:00
func _Attachments_CheckAttachmentExists_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( AttachmentLookupRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AttachmentsServer ) . CheckAttachmentExists ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Attachments_CheckAttachmentExists_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AttachmentsServer ) . CheckAttachmentExists ( ctx , req . ( * AttachmentLookupRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-05-17 07:59:51 +00:00
// Attachments_ServiceDesc is the grpc.ServiceDesc for Attachments service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Attachments_ServiceDesc = grpc . ServiceDesc {
ServiceName : "proto.Attachments" ,
HandlerType : ( * AttachmentsServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "GetAttachment" ,
Handler : _Attachments_GetAttachment_Handler ,
} ,
2024-05-18 08:54:42 +00:00
{
MethodName : "CheckAttachmentExists" ,
Handler : _Attachments_CheckAttachmentExists_Handler ,
} ,
2024-05-17 07:59:51 +00:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "attachments.proto" ,
}