aboutsummaryrefslogtreecommitdiff
path: root/http_global.go
blob: 02892c95a2d8fd2b3a0b6a22b81ba9bcb010ea9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>

package main

// globalData is passed as "global" when rendering HTML templates.
var globalData = map[string]any{
	"server_public_key_string":      &serverPubkeyString,
	"server_public_key_fingerprint": &serverPubkeyFP,
	"forge_version":                 VERSION,
	// Some other ones are populated after config parsing
}