mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-17 13:51:48 -06:00
30 lines
733 B
Go
30 lines
733 B
Go
// Copyright 2016 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/open-policy-agent/opa/version"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
|
|
var versionCommand = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version of OPA",
|
|
Long: "Show version and build information for OPA.",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("Version: " + version.Version)
|
|
fmt.Println("Build Commit: " + version.Vcs)
|
|
fmt.Println("Build Timestamp: " + version.Timestamp)
|
|
fmt.Println("Build Hostname: " + version.Hostname)
|
|
},
|
|
}
|
|
|
|
RootCommand.AddCommand(versionCommand)
|
|
}
|