photoprism/internal/commands/version.go
2020-02-18 23:42:51 +01:00

25 lines
461 B
Go

package commands
import (
"fmt"
"github.com/photoprism/photoprism/internal/config"
"github.com/urfave/cli"
)
// VersionCommand is used to register the version cli command
var VersionCommand = cli.Command{
Name: "version",
Usage: "Shows version information",
Action: versionAction,
}
// versionAction prints the current version
func versionAction(ctx *cli.Context) error {
conf := config.NewConfig(ctx)
fmt.Println(conf.Version())
return nil
}