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

@@ -13,7 +13,6 @@ var rootCmd = &cobra.Command{
Use: "banforge",
Short: "IPS log-based written on Golang",
Run: func(cmd *cobra.Command, args []string) {
},
}
@@ -28,6 +27,7 @@ func Execute() {
rootCmd.AddCommand(command.BanCmd)
rootCmd.AddCommand(command.UnbanCmd)
rootCmd.AddCommand(command.BanListCmd)
rootCmd.AddCommand(command.VersionCmd)
command.RuleRegister()
command.FwRegister()
if err := rootCmd.Execute(); err != nil {