Files
photoprism/internal/commands/show.go
2025-09-21 19:34:39 +02:00

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,
},
}