mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2024-12-22 06:15:07 -05:00
80fe913813
Signed-off-by: Ciro S. Costa <utxobr@protonmail.com>
21 lines
276 B
Go
21 lines
276 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
version = "dev"
|
|
commit = "dev"
|
|
)
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "print the version of this CLI",
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
fmt.Println(version, commit)
|
|
},
|
|
}
|