aboutsummaryrefslogtreecommitdiff
path: root/global.go
blob: 72057b5b60a1631f8a6e2c375b750e15c54fb964 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

// SPDX-License-Identifier: BSD-2-Clause
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>

package main

// global is a struct that holds global information that the HTML template may
// wish to access.
var global = struct {
	// Most of these fields should be filled in by flag parsing.
	NeedBits        uint
	NeedBitsReverse uint
	SourceURL       string
	Version         string
}{
	// The version should be replaced by the init function in version.go,
	// if version.go is properly generated by the Makefile.
	Version: "(no version)",
}