Skip to content

Commit

Permalink
feat(cmd/wallet): Refactor wallet cmd into separate package
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Oct 19, 2023
1 parent 35a14cf commit 29c7813
Show file tree
Hide file tree
Showing 12 changed files with 486 additions and 400 deletions.
3 changes: 2 additions & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/oasisprotocol/cli/cmd/account"
"github.com/oasisprotocol/cli/cmd/network"
"github.com/oasisprotocol/cli/cmd/paratime"
"github.com/oasisprotocol/cli/cmd/wallet"
"github.com/oasisprotocol/cli/config"
"github.com/oasisprotocol/cli/version"
_ "github.com/oasisprotocol/cli/wallet/file" // Register file wallet backend.
Expand Down Expand Up @@ -98,7 +99,7 @@ func init() {

rootCmd.AddCommand(network.Cmd)
rootCmd.AddCommand(paratime.Cmd)
rootCmd.AddCommand(walletCmd)
rootCmd.AddCommand(wallet.Cmd)
rootCmd.AddCommand(account.Cmd)
rootCmd.AddCommand(addressBookCmd)
rootCmd.AddCommand(contractCmd)
Expand Down
Loading

0 comments on commit 29c7813

Please sign in to comment.