aboutsummaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.go b/config.go
index 525581a..d427aee 100644
--- a/config.go
+++ b/config.go
@@ -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
}