aboutsummaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-12-30 20:38:41 +0000
committerRunxi Yu <me@runxiyu.org>2024-12-30 20:51:37 +0000
commit863ff2651f77429ee0fe2e0604e2f3706401fdeb (patch)
treef68cbbe1ba927f05218575a9081c3182420b48b0 /config.go
downloadmaild-863ff2651f77429ee0fe2e0604e2f3706401fdeb.tar.gz
maild-863ff2651f77429ee0fe2e0604e2f3706401fdeb.tar.zst
maild-863ff2651f77429ee0fe2e0604e2f3706401fdeb.zip
Initial commit
Diffstat (limited to 'config.go')
-rw-r--r--config.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.go b/config.go
new file mode 100644
index 0000000..5641af2
--- /dev/null
+++ b/config.go
@@ -0,0 +1,8 @@
+// TODO: edit scfg to require fields to exist unless explicitly
+//
+// marked optional.
+package main
+
+var config struct {
+ Server_name string `scfg:"server_name"`
+}