Files
BanForge/cmd/banforge/command/version.go
d3m0k1d 9519eedf4f
All checks were successful
build / build (push) Successful in 3m9s
feat: add new interface method to firewals
2026-02-09 19:50:06 +03:00

18 lines
264 B
Go

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