Files
smart-search-back/api/proto/supplier/supplier.proto
vallyenfail e2968722ed
Some checks failed
Deploy Smart Search Backend / deploy (push) Failing after 1m54s
add service
2026-01-17 20:41:37 +03:00

19 lines
403 B
Protocol Buffer

syntax = "proto3";
package supplier;
option go_package = "git.techease.ru/Smart-search/smart-search-back/pkg/pb/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;
}