mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
16 lines
268 B
Go
16 lines
268 B
Go
package conf
|
|
|
|
type LogConfig struct {
|
|
Level string `yaml:"Level"`
|
|
AccessPath string `yaml:"AccessPath"`
|
|
ErrorPath string `yaml:"ErrorPath"`
|
|
}
|
|
|
|
func NewLogConfig() *LogConfig {
|
|
return &LogConfig{
|
|
Level: "none",
|
|
AccessPath: "",
|
|
ErrorPath: "",
|
|
}
|
|
}
|