feat: stub out remote and replication commands and subcommands (#254)

* feat: stubbed out remote and replication commands and subcommands

* refactor: renamed remote.go file to match command

* refactor: combined replication metrics and replication list subcommands into list only

* refactor: removed extra appends to pass lint check
This commit is contained in:
mcfarlm3
2021-09-03 13:17:18 -07:00
committed by GitHub
parent 65da55e3f3
commit 1ec4e1590b
3 changed files with 144 additions and 0 deletions

View File

@ -54,6 +54,8 @@ var app = cli.App{
newApplyCmd(),
newStacksCmd(),
newTemplateCmd(),
newRemoteCmd(),
newReplicationCmd(),
},
Before: withContext(),
}