aboutsummaryrefslogtreecommitdiff
path: root/flags.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 /flags.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--flags.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/flags.go b/flags.go
index abb1ace..8b16708 100644
--- a/flags.go
+++ b/flags.go
@@ -6,14 +6,14 @@ package main
import "flag"
var (
- difficulty uint
listenAddr string
destHost string
secondary bool
)
func init() {
- flag.UintVar(&difficulty, "difficulty", 17, "leading zero bits required for the challenge")
+ flag.UintVar(&global.NeedBits, "difficulty", 17, "leading zero bits required for the challenge")
+ flag.StringVar(&global.SourceURL, "source", "https://https://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/", "url to the source code")
flag.StringVar(&listenAddr, "listen", ":8081", "address to listen on")
flag.StringVar(&destHost, "upstream", "http://127.0.0.1:8080", "destination url base to proxy to")
flag.BoolVar(&secondary, "secondary", false, "trust X-Forwarded-For headers")