mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-24 09:27:38 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
25 lines
537 B
Protocol Buffer
25 lines
537 B
Protocol Buffer
syntax = "proto3";
|
|
package nexus.hub.proto;
|
|
|
|
import "nexus/models/proto/typed_document.proto";
|
|
import "idm/api/proto/chat_manager_service.proto";
|
|
|
|
message StartDeliveryRequest {
|
|
nexus.models.proto.TypedDocument typed_document = 1;
|
|
idm.api.proto.Chat chat = 2;
|
|
string bot_name = 3;
|
|
}
|
|
|
|
message StartDeliveryResponse {
|
|
enum Status {
|
|
OK = 0;
|
|
TOO_MANY_DOWNLOADS = 1;
|
|
ALREADY_DOWNLOADING = 2;
|
|
}
|
|
Status status = 1;
|
|
}
|
|
|
|
service Delivery {
|
|
rpc start_delivery(StartDeliveryRequest) returns (StartDeliveryResponse) {};
|
|
}
|