photoprism/internal/commands/show.go
Michael Mayer 3cf1c699df Video: Refactor FFmpeg Transcoding Size Limit #3466 #3498 #3549
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-07-18 15:15:04 +02:00

22 lines
451 B
Go

package commands
import (
"github.com/urfave/cli"
)
// ShowCommand configures the show subcommands.
var ShowCommand = cli.Command{
Name: "show",
Usage: "Shows supported formats, features, and config options",
Subcommands: []cli.Command{
ShowConfigCommand,
ShowConfigOptionsCommand,
ShowConfigYamlCommand,
ShowSearchFiltersCommand,
ShowFileFormatsCommand,
ShowThumbSizesCommand,
ShowVideoSizesCommand,
ShowMetadataCommand,
},
}