mirror of
https://github.com/v2fly/domain-list-community.git
synced 2026-02-04 13:03:14 +07:00
* Feat: add a new datdump tool * Refactor: address code review comments * Refactor: remove export all from main program use datdump instead * Refactor: allow spaces in exportlists e.g. `--exportlists="lista, listb"` * all: cleanup * apply review suggestion --------- Co-authored-by: database64128 <free122448@hotmail.com>
10 lines
213 B
Go
10 lines
213 B
Go
package dlc
|
|
|
|
const (
|
|
RuleTypeDomain string = "domain"
|
|
RuleTypeFullDomain string = "full"
|
|
RuleTypeKeyword string = "keyword"
|
|
RuleTypeRegexp string = "regexp"
|
|
RuleTypeInclude string = "include"
|
|
)
|