vote-api/config/log.go
2024-08-27 14:51:15 +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"` // 日志名称
}