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",
|
2023-01-15 15:36:20 +01:00
|
|
|
Usage: "Shows supported formats, features, and config options",
|
2022-04-12 13:28:28 +02:00
|
|
|
Subcommands: []cli.Command{
|
|
|
|
ShowConfigCommand,
|
2023-01-25 11:41:39 +01:00
|
|
|
ShowConfigOptionsCommand,
|
|
|
|
ShowConfigYamlCommand,
|
|
|
|
ShowSearchFiltersCommand,
|
|
|
|
ShowFileFormatsCommand,
|
|
|
|
ShowMetadataCommand,
|
2022-04-12 13:28:28 +02:00
|
|
|
},
|
|
|
|
}
|