lnd/lnrpc/lnclipb/lncli.proto
Mohamed Awnallah 1402ffd17b
protolint: configure protolint and fix the protolinting issues
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.
2024-01-22 22:00:00 +02:00

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