diff options
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/common.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/internal/config/common.go b/internal/config/common.go index a09a3ad..103b390 100644 --- a/internal/config/common.go +++ b/internal/config/common.go @@ -10,9 +10,12 @@ type CommonConfig struct { // stdout: only log to stdout (useful when used with systemd) // daily: create a log file for every day LogStrategy string - LogDir string - CacheDir string - TmpDir string `json:",omitempty"` + // The log directory + LogDir string + // The cache directory + CacheDir string + // The temp directory + TmpDir string `json:",omitempty"` } // Create a new default configuration. |
