7 lines
96 B
Go
7 lines
96 B
Go
package blocker
|
|
|
|
type BlockerEngine interface {
|
|
Ban(ip string) error
|
|
Unban(ip string) error
|
|
}
|