mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-11-03 23:55:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			519 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			519 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"tinyauth/internal/constants"
 | 
						|
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
)
 | 
						|
 | 
						|
var versionCmd = &cobra.Command{
 | 
						|
	Use:   "version",
 | 
						|
	Short: "Print the version number of Tinyauth",
 | 
						|
	Long:  `All software has versions. This is Tinyauth's`,
 | 
						|
	Run: func(cmd *cobra.Command, args []string) {
 | 
						|
		fmt.Printf("Version: %s\n", constants.Version)
 | 
						|
		fmt.Printf("Commit Hash: %s\n", constants.CommitHash)
 | 
						|
		fmt.Printf("Build Timestamp: %s\n", constants.BuildTimestamp)
 | 
						|
	},
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	rootCmd.AddCommand(versionCmd)
 | 
						|
}
 |