mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-18 22:34:22 +01:00
18 lines
371 B
Protocol Buffer
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 {
|
|
} |