case-api/config/log.go
2025-03-07 16:57:28 +08:00

7 lines
224 B
Go

package config
type Log struct {
FilePath string `mapstructure:"file-path" json:"file-path" yaml:"file-path"` // 日志目录
FileName string `mapstructure:"file-name" json:"file-name" yaml:"file-name"` // 日志名称
}