feat: add new interface method to firewals
All checks were successful
build / build (push) Successful in 3m9s

This commit is contained in:
d3m0k1d
2026-02-09 19:50:06 +03:00
parent b8b9b227a9
commit 9519eedf4f
7 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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)
},
}