0096243240
Replaces the --no-wrap flag with --md in all "photoprism show ..." subcommands, as this is easier to understand. See also #2247. Unused code was opportunistically removed along the way.
17 lines
323 B
Go
17 lines
323 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// ShowCommand registers the show subcommands.
|
|
var ShowCommand = cli.Command{
|
|
Name: "show",
|
|
Usage: "Configuration and system report subcommands",
|
|
Subcommands: []cli.Command{
|
|
ShowConfigCommand,
|
|
ShowTagsCommand,
|
|
ShowFiltersCommand,
|
|
ShowFormatsCommand,
|
|
},
|
|
}
|