Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/cmd/version.go
988 views
1
package cmd
2
3
import (
4
"fmt"
5
"github.com/spf13/cobra"
6
"github.com/sundowndev/phoneinfoga/v2/build"
7
)
8
9
func init() {
10
rootCmd.AddCommand(versionCmd)
11
}
12
13
var versionCmd = &cobra.Command{
14
Use: "version",
15
Short: "Print current version of the tool",
16
Run: func(cmd *cobra.Command, args []string) {
17
fmt.Printf("PhoneInfoga %s\n", build.String())
18
},
19
}
20
21