aboutsummaryrefslogtreecommitdiff
path: root/http_global.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-19 12:19:57 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-19 12:19:57 +0800
commit9cf817e614a906c54990c74c28d4a6dcf9465731 (patch)
tree6d26a521af68c03f5f883a8ebe16b8842fd0db22 /http_global.go
parentRemove underscores from Go code, pt 5 (diff)
downloadforge-9cf817e614a906c54990c74c28d4a6dcf9465731.tar.gz
forge-9cf817e614a906c54990c74c28d4a6dcf9465731.tar.zst
forge-9cf817e614a906c54990c74c28d4a6dcf9465731.zip
Remove underscores from Go code, pt 6
Diffstat (limited to 'http_global.go')
-rw-r--r--http_global.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http_global.go b/http_global.go
index 0790b3c..f793c24 100644
--- a/http_global.go
+++ b/http_global.go
@@ -5,8 +5,8 @@ package main
// globalData is passed as "global" when rendering HTML templates.
var globalData = map[string]any{
- "server_public_key_string": &server_public_key_string,
- "server_public_key_fingerprint": &server_public_key_fingerprint,
+ "server_public_key_string": &serverPubkeyString,
+ "server_public_key_fingerprint": &serverPubkeyFP,
"forge_version": VERSION,
// Some other ones are populated after config parsing
}