mirror of
https://github.com/folbricht/routedns.git
synced 2025-12-30 14:10:03 -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)
|
|
}
|