diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -26,6 +26,9 @@ var config struct { Key string `scfg:"key"` Root string `scfg:"root"` } `scfg:"ssh"` + General struct { + Title string `scfg:"title"` + } `scfg:"general"` Git struct { Root string `scfg:"root"` } `scfg:"git"` @@ -56,5 +59,7 @@ func load_config(path string) (err error) { return err } + global_data["forge_title"] = config.General.Title + return nil } |