feat(client): backport autocli for node service (#23811)

Co-authored-by: zakir <80246097+zakir-code@users.noreply.github.com>
This commit is contained in:
Alex | Interchain Labs
2025-02-26 10:17:26 -05:00
committed by GitHub
co-authored by zakir
parent da14035fcf
commit 9b83b2f7b6
4 changed files with 57 additions and 1 deletions
+43
View File
@@ -0,0 +1,43 @@
package node
import (
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
nodev1beta1 "cosmossdk.io/api/cosmos/base/node/v1beta1"
)
var ServiceAutoCLIDescriptor = &autocliv1.ServiceCommandDescriptor{
Service: nodev1beta1.Service_ServiceDesc.ServiceName,
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
{
RpcMethod: "Config",
Use: "config",
Short: "Query the current node config",
},
{
RpcMethod: "Status",
Use: "status",
Short: "Query the current node status",
},
},
}
// NewNodeCommands is a fake `appmodule.Module` to be considered as a module
// and be added in AutoCLI.
func NewNodeCommands() *nodeModule {
return &nodeModule{}
}
type nodeModule struct{}
func (m nodeModule) IsOnePerModuleType() {}
func (m nodeModule) IsAppModule() {}
func (m nodeModule) Name() string {
return "node"
}
func (m nodeModule) AutoCLIOptions() *autocliv1.ModuleOptions {
return &autocliv1.ModuleOptions{
Query: ServiceAutoCLIDescriptor,
}
}