lnd/lnrpc/devrpc/dev.proto

19 lines
373 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
import "lightning.proto";
package devrpc;
option go_package = "github.com/lightningnetwork/lnd/lnrpc/devrpc";
service Dev {
/*
ImportGraph imports a ChannelGraph into the graph database. Should only be
used for development.
*/
rpc ImportGraph (lnrpc.ChannelGraph) returns (ImportGraphResponse);
}
message ImportGraphResponse {
}