mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-19 06:44:23 +01:00
22 lines
433 B
Protocol Buffer
22 lines
433 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/breez/lspd/notifications";
|
|
|
|
package notifications;
|
|
|
|
service Notifications {
|
|
rpc SubscribeNotifications(EncryptedNotificationRequest)
|
|
returns (SubscribeNotificationsReply) {}
|
|
}
|
|
|
|
message EncryptedNotificationRequest {
|
|
bytes blob = 1;
|
|
}
|
|
|
|
message SubscribeNotificationsRequest {
|
|
string url = 1;
|
|
string signature = 2;
|
|
}
|
|
|
|
message SubscribeNotificationsReply {
|
|
} |