mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-08 18:20:55 +08:00
22 lines
458 B
Go
22 lines
458 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,
|
|
ShowThumbSizesCommand,
|
|
ShowVideoSizesCommand,
|
|
ShowMetadataCommand,
|
|
},
|
|
}
|