You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.3 KiB
109 lines
3.3 KiB
// Code generated by protoc-gen-go-grpc. DO NOT EDIT. |
|
// versions: |
|
// - protoc-gen-go-grpc v1.3.0 |
|
// - protoc v3.18.1 |
|
// source: user.proto |
|
|
|
package user |
|
|
|
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 ( |
|
User_List_FullMethodName = "/com.diulo.api.user/list" |
|
) |
|
|
|
// UserClient is the client API for User 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 UserClient interface { |
|
List(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) |
|
} |
|
|
|
type userClient struct { |
|
cc grpc.ClientConnInterface |
|
} |
|
|
|
func NewUserClient(cc grpc.ClientConnInterface) UserClient { |
|
return &userClient{cc} |
|
} |
|
|
|
func (c *userClient) List(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) { |
|
out := new(Response) |
|
err := c.cc.Invoke(ctx, User_List_FullMethodName, in, out, opts...) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return out, nil |
|
} |
|
|
|
// UserServer is the server API for User service. |
|
// All implementations must embed UnimplementedUserServer |
|
// for forward compatibility |
|
type UserServer interface { |
|
List(context.Context, *Request) (*Response, error) |
|
mustEmbedUnimplementedUserServer() |
|
} |
|
|
|
// UnimplementedUserServer must be embedded to have forward compatible implementations. |
|
type UnimplementedUserServer struct { |
|
} |
|
|
|
func (UnimplementedUserServer) List(context.Context, *Request) (*Response, error) { |
|
return nil, status.Errorf(codes.Unimplemented, "method List not implemented") |
|
} |
|
func (UnimplementedUserServer) mustEmbedUnimplementedUserServer() {} |
|
|
|
// UnsafeUserServer may be embedded to opt out of forward compatibility for this service. |
|
// Use of this interface is not recommended, as added methods to UserServer will |
|
// result in compilation errors. |
|
type UnsafeUserServer interface { |
|
mustEmbedUnimplementedUserServer() |
|
} |
|
|
|
func RegisterUserServer(s grpc.ServiceRegistrar, srv UserServer) { |
|
s.RegisterService(&User_ServiceDesc, srv) |
|
} |
|
|
|
func _User_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
|
in := new(Request) |
|
if err := dec(in); err != nil { |
|
return nil, err |
|
} |
|
if interceptor == nil { |
|
return srv.(UserServer).List(ctx, in) |
|
} |
|
info := &grpc.UnaryServerInfo{ |
|
Server: srv, |
|
FullMethod: User_List_FullMethodName, |
|
} |
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
|
return srv.(UserServer).List(ctx, req.(*Request)) |
|
} |
|
return interceptor(ctx, in, info, handler) |
|
} |
|
|
|
// User_ServiceDesc is the grpc.ServiceDesc for User service. |
|
// It's only intended for direct use with grpc.RegisterService, |
|
// and not to be introspected or modified (even as a copy) |
|
var User_ServiceDesc = grpc.ServiceDesc{ |
|
ServiceName: "com.diulo.api.user", |
|
HandlerType: (*UserServer)(nil), |
|
Methods: []grpc.MethodDesc{ |
|
{ |
|
MethodName: "list", |
|
Handler: _User_List_Handler, |
|
}, |
|
}, |
|
Streams: []grpc.StreamDesc{}, |
|
Metadata: "user.proto", |
|
}
|
|
|