Clean code after fucking AI
All checks were successful
CI.yml / build (push) Successful in 44s

This commit is contained in:
d3m0k1d
2026-01-13 13:31:44 +03:00
parent 3732ef21d9
commit 11eac77f5b
3 changed files with 0 additions and 168 deletions

View File

@@ -1,19 +1,6 @@
package blocker
// BlockerEngine defines the interface for all firewall implementations
type BlockerEngine interface {
// Core operations
Ban(ip string) error
Unban(ip string) error
// Lifecycle management
Setup() error
Close() error
// Query operations
List() ([]string, error)
// Metadata
Name() string
IsAvailable() bool
}