Files
BanForge/cmd/banforge/command/version.go
d3m0k1d 7bba444522
All checks were successful
build / build (push) Successful in 2m9s
feat: upgrade max_retry logic and change version
2026-02-22 18:27:21 +03:00

18 lines
264 B
Go

package command
import (
"fmt"
"github.com/spf13/cobra"
)
var version = "0.5.2"
var VersionCmd = &cobra.Command{
Use: "version",
Short: "BanForge version",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("BanForge version:", version)
},
}