mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-24 01:04:21 +01:00
notifications: server implementation
This commit is contained in:
18
notifications/notifications.proto
Normal file
18
notifications/notifications.proto
Normal 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 {
|
||||
}
|
||||
Reference in New Issue
Block a user