Files
aperture/pricesrpc/prices.proto
Olaoluwa Osuntokun c396ca51b7 prices: rename proto file to prices.proto
This fixes a registration conflict with the set of etcd protos.
2023-06-13 20:43:18 -05:00

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; }