Remove go-json

This commit is contained in:
世界 2022-07-26 13:53:25 +08:00
parent 75508bccb5
commit 0347a7c038
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 14 additions and 40 deletions

View file

@ -58,12 +58,10 @@ func (r *DNSRule) UnmarshalJSON(bytes []byte) error {
if err != nil {
return err
}
if r.Type == "" {
r.Type = C.RuleTypeDefault
}
var v any
switch r.Type {
case C.RuleTypeDefault:
case "", C.RuleTypeDefault:
r.Type = C.RuleTypeDefault
v = &r.DefaultOptions
case C.RuleTypeLogical:
v = &r.LogicalOptions