Hide unimplemented commands

Signed-off-by: Cornelius Toole <cornelius.toole@gmail.com>
This commit is contained in:
Cornelius Toole 2021-06-27 20:08:56 -05:00 committed by Solomon Hykes
parent 4215173e40
commit 200a3d1a65
5 changed files with 10 additions and 0 deletions

View File

@ -19,6 +19,8 @@ var downCmd = &cobra.Command{
Run: func(cmd *cobra.Command, args []string) {
panic("not implemented")
},
// Remove hidden flag once command has been implemented
Hidden: true,
}
func init() {

View File

@ -22,6 +22,8 @@ var historyCmd = &cobra.Command{
panic("not implemented")
},
// Remove hidden flag once command has been implemented
Hidden: true,
}
func init() {

View File

@ -22,6 +22,8 @@ var loginCmd = &cobra.Command{
panic("not implemented")
},
// Remove hidden flag once command has been implemented
Hidden: true,
}
func init() {

View File

@ -22,6 +22,8 @@ var logoutCmd = &cobra.Command{
panic("not implemented")
},
// Remove hidden flag once command has been implemented
Hidden: true,
}
func init() {

View File

@ -22,6 +22,8 @@ var dirCmd = &cobra.Command{
panic("not implemented")
},
// Remove hidden flag once command has been implemented
Hidden: true,
}
func init() {