68ba289d6c
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>
15 lines
282 B
Go
15 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,
|
|
},
|
|
}
|