syntax = "proto3";

service OfficeConverterService {
  rpc OfficeToPdf(OfficeToPdfRequest) returns (OfficeToPdfResponse) {}
}

message OfficeToPdfRequest {
  string file = 1;
  string ext = 2;
}

message OfficeToPdfResponse {
  string file = 1;
}