diff options
author | Runxi Yu <me@runxiyu.org> | 2025-01-04 20:46:29 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-01-04 20:46:29 +0800 |
commit | 49f3a6cc3ed486289fd975cb1fcad0cd888c94e0 (patch) | |
tree | 19f0c76c17314d33ad98ebbbce6c1ce9deca8d15 /config.go | |
parent | Implement NOOP (diff) | |
download | maild-49f3a6cc3ed486289fd975cb1fcad0cd888c94e0.tar.gz maild-49f3a6cc3ed486289fd975cb1fcad0cd888c94e0.tar.zst maild-49f3a6cc3ed486289fd975cb1fcad0cd888c94e0.zip |
Reformat files
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,14 +2,15 @@ package main import ( "bufio" - "go.lindenii.runxiyu.org/lindenii-common/scfg" "os" "sync" + + "go.lindenii.runxiyu.org/lindenii-common/scfg" ) var config struct { Server_name string `scfg:"server_name"` - Inbox_path string `scfg:"inbox_path"` + Inbox_path string `scfg:"inbox_path"` } var config_mutex sync.RWMutex |