mirror of
https://github.com/folbricht/routedns.git
synced 2026-01-01 15:11:16 -06:00
7 lines
148 B
Go
7 lines
148 B
Go
package rdns
|
|
|
|
type BlocklistLoader interface {
|
|
// Returns a list of rules that can then be stored into a blocklist DB.
|
|
Load() ([]string, error)
|
|
}
|