add service
Some checks failed
Deploy Smart Search Backend Test / deploy (push) Failing after 25s

This commit is contained in:
vallyenfail
2026-01-19 19:51:39 +03:00
parent 6cb3063a1d
commit 3552f69572
15 changed files with 1213 additions and 84 deletions

View File

@@ -22,14 +22,12 @@ message GenerateResponse {
}
message GetInfoRequest {
string code = 1;
int64 user_id = 1;
}
message GetInfoResponse {
string code = 1;
int64 user_id = 2;
int32 can_be_used_count = 3;
google.protobuf.Timestamp expires_at = 4;
bool is_active = 5;
google.protobuf.Timestamp created_at = 6;
int32 can_be_used_count = 2;
google.protobuf.Timestamp expires_at = 3;
google.protobuf.Timestamp created_at = 4;
}