aca929e3c9
see https://docs.photoprism.app/getting-started/config-files/ Signed-off-by: Michael Mayer <michael@photoprism.app>
19 lines
375 B
Go
19 lines
375 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// ShowCommand registers the show subcommands.
|
|
var ShowCommand = cli.Command{
|
|
Name: "show",
|
|
Usage: "Shows supported formats, features, and config options",
|
|
Subcommands: []cli.Command{
|
|
ShowConfigCommand,
|
|
ShowFlagsCommand,
|
|
ShowOptionsCommand,
|
|
ShowFiltersCommand,
|
|
ShowFormatsCommand,
|
|
ShowTagsCommand,
|
|
},
|
|
}
|