diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:47:10 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:47:10 +0800 |
commit | 911c932ec426ee45c9380bd26714c4bb505a3a88 (patch) | |
tree | 5224b91b5622997ccfc882c2e4e0b22e97bc450b /global.go | |
parent | Revert "Remove the trivial habitual makefile" (diff) | |
download | powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.gz powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.tar.zst powxy-911c932ec426ee45c9380bd26714c4bb505a3a88.zip |
Use a global struct with version and source info
Diffstat (limited to 'global.go')
-rw-r--r-- | global.go | 10 |
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 +}{} |