blob: 0790b3cfd1f20a559860124f37bfae006bf3ced1 (
plain) (
tree)
|
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileContributor: 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": &server_public_key_string,
"server_public_key_fingerprint": &server_public_key_fingerprint,
"forge_version": VERSION,
// Some other ones are populated after config parsing
}
|