photoprism/internal/commands/show.go
Michael Mayer 0096243240 Metadata: Report supported Exiftool, XMP, and Dublin Core tags #2252
Replaces the --no-wrap flag with --md in all "photoprism show ..."
subcommands, as this is easier to understand. See also #2247.
Unused code was opportunistically removed along the way.
2022-04-14 10:49:56 +02:00

18 lines
323 B
Go

package commands
import (
"github.com/urfave/cli"
)
// ShowCommand registers the show subcommands.
var ShowCommand = cli.Command{
Name: "show",
Usage: "Configuration and system report subcommands",
Subcommands: []cli.Command{
ShowConfigCommand,
ShowTagsCommand,
ShowFiltersCommand,
ShowFormatsCommand,
},
}