photoprism/internal/commands/show.go

17 lines
304 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,
ShowFiltersCommand,
ShowFormatsCommand,
},
}