From 705f3ab432f66badda16eee50b367ffad7c8a6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B0=D0=B7=D0=B0=D1=80=20=D0=93=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D1=87=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Mon, 13 Oct 2025 19:51:53 +0300 Subject: [PATCH] fix: Fixed mocks. --- internal/infrastructure/grpcClient/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/infrastructure/grpcClient/client.go b/internal/infrastructure/grpcClient/client.go index 87ce222..a717b55 100644 --- a/internal/infrastructure/grpcClient/client.go +++ b/internal/infrastructure/grpcClient/client.go @@ -15,6 +15,7 @@ type grpcClient struct { func (t *grpcClient) Close() error { // return t.conn.Close() + return nil } func (t *grpcClient) GetUserVacancies(ctx context.Context, in *pbVC.GetUserVacanciesRequest, opts ...grpc.CallOption) (*pbVC.GetUserVacanciesResponse, error) {