Files
lspd/notifications/notifications.proto
2023-06-30 16:36:29 +02:00

18 lines
371 B
Protocol Buffer

syntax = "proto3";
option go_package = "github.com/breez/lspd/notifications";
package notifications;
service Notifications {
rpc SubscribeNotifications(SubscribeNotificationsRequest)
returns (SubscribeNotificationsReply) {}
}
message SubscribeNotificationsRequest {
string url = 1;
bytes signature = 2;
}
message SubscribeNotificationsReply {
}