This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/systemconfigs/database_config.go
T

11 lines
292 B
Go

package systemconfigs
// 数据库相关配置
type DatabaseConfig struct {
ServerAccessLog struct {
Clean struct {
Days int `json:"days"` // 日志保留天数,0表示不限制
} `json:"clean"` // 清理相关配置
} `json:"serverAccessLog"` // 服务访问日志相关配置
}