2026-03-20 14:52:22 +03:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc v6.33.1
// source: proto/verify.proto
package verifyV1
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.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
const (
2026-04-01 17:46:04 +03:00
AuthService_VerifyToken_FullMethodName = "/verifyAuth.v1.AuthService/VerifyToken"
AuthService_GetPersonalInfo_FullMethodName = "/verifyAuth.v1.AuthService/GetPersonalInfo"
2026-03-20 14:52:22 +03:00
)
// AuthServiceClient is the client API for AuthService 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 AuthServiceClient interface {
VerifyToken ( ctx context . Context , in * VerifyTokenRequest , opts ... grpc . CallOption ) ( * VerifyTokenResponse , error )
2026-04-01 17:46:04 +03:00
GetPersonalInfo ( ctx context . Context , in * PersonalRequest , opts ... grpc . CallOption ) ( * PersonalResponse , error )
2026-03-20 14:52:22 +03:00
}
type authServiceClient struct {
cc grpc . ClientConnInterface
}
func NewAuthServiceClient ( cc grpc . ClientConnInterface ) AuthServiceClient {
return & authServiceClient { cc }
}
func ( c * authServiceClient ) VerifyToken ( ctx context . Context , in * VerifyTokenRequest , opts ... grpc . CallOption ) ( * VerifyTokenResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( VerifyTokenResponse )
err := c . cc . Invoke ( ctx , AuthService_VerifyToken_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2026-04-01 17:46:04 +03:00
func ( c * authServiceClient ) GetPersonalInfo ( ctx context . Context , in * PersonalRequest , opts ... grpc . CallOption ) ( * PersonalResponse , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( PersonalResponse )
err := c . cc . Invoke ( ctx , AuthService_GetPersonalInfo_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2026-03-20 14:52:22 +03:00
// AuthServiceServer is the server API for AuthService service.
// All implementations must embed UnimplementedAuthServiceServer
// for forward compatibility.
type AuthServiceServer interface {
VerifyToken ( context . Context , * VerifyTokenRequest ) ( * VerifyTokenResponse , error )
2026-04-01 17:46:04 +03:00
GetPersonalInfo ( context . Context , * PersonalRequest ) ( * PersonalResponse , error )
2026-03-20 14:52:22 +03:00
mustEmbedUnimplementedAuthServiceServer ( )
}
// UnimplementedAuthServiceServer must be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedAuthServiceServer struct { }
func ( UnimplementedAuthServiceServer ) VerifyToken ( context . Context , * VerifyTokenRequest ) ( * VerifyTokenResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method VerifyToken not implemented" )
}
2026-04-01 17:46:04 +03:00
func ( UnimplementedAuthServiceServer ) GetPersonalInfo ( context . Context , * PersonalRequest ) ( * PersonalResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method GetPersonalInfo not implemented" )
}
2026-03-20 14:52:22 +03:00
func ( UnimplementedAuthServiceServer ) mustEmbedUnimplementedAuthServiceServer ( ) { }
func ( UnimplementedAuthServiceServer ) testEmbeddedByValue ( ) { }
// UnsafeAuthServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to AuthServiceServer will
// result in compilation errors.
type UnsafeAuthServiceServer interface {
mustEmbedUnimplementedAuthServiceServer ( )
}
func RegisterAuthServiceServer ( s grpc . ServiceRegistrar , srv AuthServiceServer ) {
// If the following call pancis, it indicates UnimplementedAuthServiceServer 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.
if t , ok := srv . ( interface { testEmbeddedByValue ( ) } ) ; ok {
t . testEmbeddedByValue ( )
}
s . RegisterService ( & AuthService_ServiceDesc , srv )
}
func _AuthService_VerifyToken_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( VerifyTokenRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServiceServer ) . VerifyToken ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : AuthService_VerifyToken_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServiceServer ) . VerifyToken ( ctx , req . ( * VerifyTokenRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2026-04-01 17:46:04 +03:00
func _AuthService_GetPersonalInfo_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( PersonalRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( AuthServiceServer ) . GetPersonalInfo ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : AuthService_GetPersonalInfo_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( AuthServiceServer ) . GetPersonalInfo ( ctx , req . ( * PersonalRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2026-03-20 14:52:22 +03:00
// AuthService_ServiceDesc is the grpc.ServiceDesc for AuthService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var AuthService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "verifyAuth.v1.AuthService" ,
HandlerType : ( * AuthServiceServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "VerifyToken" ,
Handler : _AuthService_VerifyToken_Handler ,
} ,
2026-04-01 17:46:04 +03:00
{
MethodName : "GetPersonalInfo" ,
Handler : _AuthService_GetPersonalInfo_Handler ,
} ,
2026-03-20 14:52:22 +03:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "proto/verify.proto" ,
}