aboutsummaryrefslogtreecommitdiff
path: root/global.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 12:47:10 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 12:47:10 +0800
commit911c932ec426ee45c9380bd26714c4bb505a3a88 (patch)
tree5224b91b5622997ccfc882c2e4e0b22e97bc450b /global.go
parentRevert "Remove the trivial habitual makefile" (diff)
downloadpowxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.gz
powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.zst
powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.zip
Use a global struct with version and source info
Diffstat (limited to '')
-rw-r--r--global.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/global.go b/global.go
new file mode 100644
index 0000000..0e2bf81
--- /dev/null
+++ b/global.go
@@ -0,0 +1,10 @@
+// SPDX-License-Identifier: AGPL-3.0-only
+// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+
+package main
+
+var global = struct {
+ NeedBits uint
+ SourceURL string
+ Version string
+}{}