jawher / mow.cli

A versatile library for building CLI applications in Go
MIT License
872 stars 55 forks source link

Add a way to hide commands in the help messages #109

Closed jawher closed 4 years ago

jawher commented 4 years ago
app.Command("login", "login to the backend (DEPRECATED: please use auth instead)", func(cmd *cli.Cmd)) {
    cmd.Hidden = true
}

Fixes #99