From f6366f14b58772f9061f5a78a09b409aa0e7925e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Mon, 30 Mar 2026 16:30:22 +0300 Subject: [PATCH] fix: remove imports google any and status protobufs and add go package proto files --- proto/identity.proto | 2 ++ proto/ldap.proto | 2 ++ 2 files changed, 4 insertions(+) diff --git a/proto/identity.proto b/proto/identity.proto index 7571c06..9b2a29d 100644 --- a/proto/identity.proto +++ b/proto/identity.proto @@ -2,6 +2,8 @@ syntax = "proto3"; package identity; +option go_package = './gen'; + service AuthService { rpc Login (LoginRequest) returns (LoginResponse); rpc Refresh (RefreshRequest) returns (RefreshResponse); diff --git a/proto/ldap.proto b/proto/ldap.proto index 4f8ef9f..c738169 100644 --- a/proto/ldap.proto +++ b/proto/ldap.proto @@ -2,6 +2,8 @@ syntax = "proto3"; package ldap_service; +option go_package = './gen'; + service LdapAuth { rpc VerifyUser (VerifyRequest) returns (VerifyResponse); }