mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-06 01:07:16 +08:00
22 lines
453 B
Go
22 lines
453 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// ShowCommands configures the show subcommands.
|
|
var ShowCommands = cli.Command{
|
|
Name: "show",
|
|
Usage: "Shows supported formats, features, and config options",
|
|
Subcommands: []cli.Command{
|
|
ShowConfigCommand,
|
|
ShowConfigOptionsCommand,
|
|
ShowConfigYamlCommand,
|
|
ShowSearchFiltersCommand,
|
|
ShowFileFormatsCommand,
|
|
ShowThumbSizesCommand,
|
|
ShowVideoSizesCommand,
|
|
ShowMetadataCommand,
|
|
},
|
|
}
|