aboutsummaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-05 20:37:03 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-05 20:37:03 +0800
commit2d0ea5ba085f9caa84a7e7b1fd55f653834009aa (patch)
tree46278813d2e2f7dd080c9289321c1021fa619e80 /config.go
parentircSend* shall no longer be global variables (diff)
downloadforge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.tar.gz
forge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.tar.zst
forge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.zip
sshPubkey* shall no longer be global variables
Diffstat (limited to 'config.go')
-rw-r--r--config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.go b/config.go
index 773a223..ec8daf8 100644
--- a/config.go
+++ b/config.go
@@ -96,7 +96,7 @@ func (s *server) loadConfig(path string) (err error) {
return err
}
- globalData["forge_title"] = s.config.General.Title
+ s.globalData["forge_title"] = s.config.General.Title
return nil
}