mirror of
https://github.com/lightninglabs/aperture.git
synced 2026-01-26 12:44:23 +01:00
16 lines
318 B
Protocol Buffer
16 lines
318 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pricesrpc;
|
|
|
|
option go_package = "github.com/lightninglabs/aperture/pricesrpc";
|
|
|
|
service Prices { rpc GetPrice(GetPriceRequest) returns (GetPriceResponse); }
|
|
|
|
message GetPriceRequest {
|
|
string path = 1;
|
|
|
|
string http_request_text = 2;
|
|
}
|
|
|
|
message GetPriceResponse { int64 price_sats = 1; }
|