2022-04-12 13:28:28 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ShowCommand registers the show subcommands.
|
|
|
|
var ShowCommand = cli.Command{
|
|
|
|
Name: "show",
|
2022-05-10 20:47:45 +02:00
|
|
|
Usage: "Shows supported formats, standards, and features",
|
2022-04-12 13:28:28 +02:00
|
|
|
Subcommands: []cli.Command{
|
|
|
|
ShowConfigCommand,
|
2022-05-10 20:47:45 +02:00
|
|
|
ShowOptionsCommand,
|
2022-04-13 09:48:51 +02:00
|
|
|
ShowFiltersCommand,
|
2022-04-12 13:28:28 +02:00
|
|
|
ShowFormatsCommand,
|
2022-05-10 20:47:45 +02:00
|
|
|
ShowTagsCommand,
|
2022-04-12 13:28:28 +02:00
|
|
|
},
|
|
|
|
}
|