aboutsummaryrefslogtreecommitdiff
path: root/global.ha
blob: ac5ac143ee89ae954a046bbaa612323bf2f96cdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let global: struct {
	title: str,
	version: str,
	ssh_pubkey: str,
	ssh_fp: str,
} = struct {
	title: str = "Test Forge",
	version: str = VERSION,
	ssh_pubkey: str = "pubkey",
	ssh_fp: str = "fp",
};