fix: remove imports google any and status protobufs

This commit is contained in:
Дмитрий
2026-03-30 16:22:49 +03:00
parent b16f526fb5
commit f592ccc021
5 changed files with 0 additions and 58 deletions

View File

@@ -1,9 +0,0 @@
syntax = "proto3";
package google.protobuf;
message Any {
string type_url = 1;
bytes value = 2;
}

View File

@@ -1,12 +0,0 @@
syntax = "proto3";
package google.rpc;
import "google/protobuf/any.proto";
message Status {
int32 code = 1;
string message = 2;
repeated google.protobuf.Any details = 3;
}

View File

@@ -1,8 +1,6 @@
syntax = "proto3";
package identity;
import "google/rpc/status.proto";
service AuthService {
rpc Login (LoginRequest) returns (LoginResponse);
@@ -36,7 +34,6 @@ message LoginResponse {
optional string temp_token = 5;
optional string message = 6;
optional string error_code = 7;
optional google.rpc.Status error = 8;
}
message RefreshRequest {