Files
lspd/notifications/notifications.proto
2023-11-09 13:34:50 +01:00

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 {
}