Files
mysql-bkup/cmd/version.go

27 lines
361 B
Go
Raw Normal View History

2024-01-19 14:12:05 +01:00
package cmd
/*
2024-02-25 14:38:32 +01:00
Copyright © 2024 Jonas Kaninda
*/
2024-01-19 14:12:05 +01:00
import (
"fmt"
"github.com/spf13/cobra"
"os"
)
var appVersion = os.Getenv("VERSION")
var VersionCmd = &cobra.Command{
Use: "version",
Short: "Show version",
Run: func(cmd *cobra.Command, args []string) {
Version()
},
}
func Version() {
fmt.Printf("Version: %s \n", appVersion)
fmt.Println()
2024-01-19 14:12:05 +01:00
}