Files
sonr/x/dwn/client/cli/cli.go
Prad NukalaandGitHub 13e6c3e84d Master (#1262)
* clear

* feat: Add everything

* fix: Commenht
2025-10-03 14:45:52 -04:00

25 lines
446 B
Go

// Package cli provides the DWN module CLI commands.
package cli
import (
"github.com/spf13/cobra"
)
// AddWalletCmds adds wallet-specific commands to the root command
func AddWalletCmds(rootCmd *cobra.Command) {
walletCmd := &cobra.Command{
Use: "wallet",
Short: "Wallet operations",
}
walletCmd.AddCommand(
SignCmd(),
VerifyCmd(),
SimulateCmd(),
BroadcastCmd(),
)
// Add wallet commands
rootCmd.AddCommand(walletCmd)
}