notifications: server implementation

This commit is contained in:
Jesse de Wit
2023-06-15 12:48:28 +02:00
parent 205d39d715
commit 4fc7887707
6 changed files with 413 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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 {
}