Hide unimplemented commands
Signed-off-by: Cornelius Toole <cornelius.toole@gmail.com>
This commit is contained in:
parent
4215173e40
commit
200a3d1a65
@ -19,6 +19,8 @@ var downCmd = &cobra.Command{
|
|||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
},
|
},
|
||||||
|
// Remove hidden flag once command has been implemented
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -22,6 +22,8 @@ var historyCmd = &cobra.Command{
|
|||||||
|
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
},
|
},
|
||||||
|
// Remove hidden flag once command has been implemented
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -22,6 +22,8 @@ var loginCmd = &cobra.Command{
|
|||||||
|
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
},
|
},
|
||||||
|
// Remove hidden flag once command has been implemented
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -22,6 +22,8 @@ var logoutCmd = &cobra.Command{
|
|||||||
|
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
},
|
},
|
||||||
|
// Remove hidden flag once command has been implemented
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -22,6 +22,8 @@ var dirCmd = &cobra.Command{
|
|||||||
|
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
},
|
},
|
||||||
|
// Remove hidden flag once command has been implemented
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
Reference in New Issue
Block a user