Add firehol blocklist

This commit is contained in:
9seconds
2021-03-15 16:21:07 +03:00
parent cae33a22e6
commit f52b3391d1
11 changed files with 533 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package ipblocklist
import (
"net"
"github.com/9seconds/mtg/v2/mtglib"
)
type noop struct{}
func (n noop) Contains(ip net.IP) bool { return false }
func NewNoop() mtglib.IPBlocklist {
return noop{}
}