From d437512d24628c0d642397412269df885edbac60 Mon Sep 17 00:00:00 2001 From: Ilya Chernishev Date: Mon, 12 Jan 2026 17:53:17 +0300 Subject: [PATCH] revert: restore original interface.go --- internal/blocker/interface.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/internal/blocker/interface.go b/internal/blocker/interface.go index d55026d..285b2b1 100644 --- a/internal/blocker/interface.go +++ b/internal/blocker/interface.go @@ -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 }