域名服务增加访问日志

This commit is contained in:
刘祥超
2021-06-02 11:53:15 +08:00
parent e4d958fd2c
commit 0be838d6f1
14 changed files with 1961 additions and 487 deletions

View File

@@ -0,0 +1,12 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package dnsconfigs
type AccessLogRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
}
func (this *AccessLogRef) Init() error {
return nil
}