mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
The API doc generator failed after merging #6149 because of the `lncli importgraph` tag in the proto file. We could also fix the API doc generator by adding the "dev" build tag, but not including any dev only features in the API docs is probably the preferred path.
18 lines
373 B
Protocol Buffer
18 lines
373 B
Protocol Buffer
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 {
|
|
}
|