photoprism/internal/commands/show.go
Michael Mayer 68ba289d6c CLI: Add "photoprism show config/formats" subcommands
Replaces "photoprism config", which could only display
current configuration values. Codecs and file formats
have been refactored along the way.

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2022-04-12 13:28:28 +02:00

16 lines
282 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,
ShowFormatsCommand,
},
}