mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
1402ffd17b
This PR addresses the following: - Install and Configure protolint to enforce the protobuf style guide rules in the CI. - Fix the protolinting issues (package and import ordering) while maintaining the comaptibility.
16 lines
309 B
Protocol Buffer
16 lines
309 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package lnclipb;
|
|
|
|
import "verrpc/verrpc.proto";
|
|
|
|
option go_package = "github.com/lightningnetwork/lnd/lnrpc/lnclipb";
|
|
|
|
message VersionResponse {
|
|
// The version information for lncli.
|
|
verrpc.Version lncli = 1;
|
|
|
|
// The version information for lnd.
|
|
verrpc.Version lnd = 2;
|
|
};
|