mirror of
				https://github.com/bestnite/bilinovel-downloader.git
				synced 2025-10-31 19:00:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			274 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			274 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package cmd
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/spf13/cobra"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	Version = "dev"
 | |
| )
 | |
| 
 | |
| var versionCmd = &cobra.Command{
 | |
| 	Use: "version",
 | |
| 	Run: func(cmd *cobra.Command, args []string) {
 | |
| 		fmt.Println("version: ", Version)
 | |
| 	},
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	RootCmd.AddCommand(versionCmd)
 | |
| }
 |