Chore: rename final

This commit is contained in:
Dreamacro
2019-02-18 21:53:57 +08:00
parent 5c8bb24121
commit c0bd82d62b
3 changed files with 12 additions and 12 deletions

View File

@ -8,7 +8,7 @@ const (
GEOIP
IPCIDR
SourceIPCIDR
FINAL
MATCH
)
type RuleType int
@ -27,8 +27,8 @@ func (rt RuleType) String() string {
return "IPCIDR"
case SourceIPCIDR:
return "SourceIPCIDR"
case FINAL:
return "FINAL"
case MATCH:
return "MATCH"
default:
return "Unknow"
}