mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2025-01-17 18:47:18 -05:00
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)
|
||
|
},
|
||
|
}
|