mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
24 lines
503 B
Go
24 lines
503 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// 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,
|
|
ShowSourcesCommand,
|
|
ShowThumbSizesCommand,
|
|
ShowVideoSizesCommand,
|
|
ShowMetadataCommand,
|
|
ShowCommandsCommand,
|
|
},
|
|
}
|