1
0
Fork 0

Added ToStdout, Clean, and CleanError to Log.

This commit is contained in:
Alexander Andreev 2022-02-07 21:24:25 +04:00
parent c1e565249c
commit 17152581a9
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F
1 changed files with 6 additions and 3 deletions

View File

@ -15,9 +15,12 @@ type Configuration struct {
WebDir string `yaml:"web_dir"`
User string `yaml:"user"`
Log struct {
Error string `yaml:"error"`
Upload string `yaml:"upload"`
Download string `yaml:"download"`
ToStdout bool `yaml:"stdout"`
Error string `yaml:"error"`
Upload string `yaml:"upload"`
Download string `yaml:"download"`
Clean string `yaml:"clean"`
CleanError string `yaml:"clean_error"`
} `yaml:"log"`
Uploads struct {
Directory string `yaml:"directory"`