aboutsummaryrefslogtreecommitdiff
path: root/global.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 21:47:40 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 22:02:18 +0800
commitdbfadc5a7e5bd3163b49878994063cd6d869fe6a (patch)
tree5200e50de2b41a1f7e4da805fea1234141174e04 /global.go
parentcsolver: Remove, it's not needed anymore (diff)
downloadpowxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.gz
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.zst
powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.zip
Refactorv0.1.13
Diffstat (limited to 'global.go')
-rw-r--r--global.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/global.go b/global.go
index 39bbe4f..72057b5 100644
--- a/global.go
+++ b/global.go
@@ -3,11 +3,16 @@
package main
+// global is a struct that holds global information that the HTML template may
+// wish to access.
var global = struct {
+ // Most of these fields should be filled in by flag parsing.
NeedBits uint
NeedBitsReverse uint
SourceURL string
Version string
}{
+ // The version should be replaced by the init function in version.go,
+ // if version.go is properly generated by the Makefile.
Version: "(no version)",
}