mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 00:42:53 +01:00
9ce67ec590
- feat(idm): Rename IDM-2 to IDM - feat(idm): Open IDM 3 internal commit(s) GitOrigin-RevId: e302e9b5cda18cca1adc4ae8a3d906714d222106
16 lines
331 B
Protocol Buffer
16 lines
331 B
Protocol Buffer
syntax = "proto3";
|
|
package nexus.hub.proto;
|
|
|
|
import "idm/api/proto/chat_manager_service.proto";
|
|
|
|
message SubmitRequest {
|
|
bytes telegram_document = 1;
|
|
string telegram_file_id = 2;
|
|
idm.api.proto.Chat chat = 3;
|
|
}
|
|
message SubmitResponse { }
|
|
|
|
service Submitter {
|
|
rpc submit(SubmitRequest) returns (SubmitResponse) {};
|
|
}
|