mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-10 19:53:10 +00:00
23 lines
433 B
Protocol Buffer
23 lines
433 B
Protocol Buffer
// 19/WAKU2-LIGHTPUSH rfc: https://rfc.vac.dev/spec/19/
|
|
// Protocol identifier: /vac/waku/lightpush/2.0.0-beta1
|
|
|
|
syntax = "proto3";
|
|
|
|
import "message.proto";
|
|
|
|
message PushRequest {
|
|
string pubsub_topic = 1;
|
|
WakuMessage message = 2;
|
|
}
|
|
|
|
message PushResponse {
|
|
bool is_success = 1;
|
|
optional string info = 2;
|
|
}
|
|
|
|
message PushRpc {
|
|
string request_id = 1;
|
|
optional PushRequest request = 2;
|
|
optional PushResponse response = 3;
|
|
}
|