add service

This commit is contained in:
vallyenfail
2026-01-17 17:39:33 +03:00
parent 1376ff9188
commit d959dcca96
82 changed files with 25041 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
package supplier;
option go_package = "github.com/smart-search-gateway/api/proto/supplier/supplier";
service SupplierService {
rpc ExportExcel(ExportExcelRequest) returns (ExportExcelResponse);
}
message ExportExcelRequest {
string request_id = 1;
int64 user_id = 2;
}
message ExportExcelResponse {
bytes file_data = 1;
string file_name = 2;
string mime_type = 3;
}