mirror of
https://github.com/folbricht/routedns.git
synced 2026-04-24 17:28:44 -05: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)
|
|
}
|