mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-09 18:25:53 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
17 lines
356 B
Protocol Buffer
17 lines
356 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;
|
|
string bot_name = 4;
|
|
}
|
|
message SubmitResponse { }
|
|
|
|
service Submitter {
|
|
rpc submit(SubmitRequest) returns (SubmitResponse) {};
|
|
}
|