mirror of
https://github.com/NohamR/papeer.git
synced 2026-05-25 12:27:20 +00:00
20 lines
291 B
Go
20 lines
291 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(versionCmd)
|
|
}
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version number of papeer",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("papeer v0.3.2")
|
|
},
|
|
}
|