diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-05 20:37:03 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-05 20:37:03 +0800 |
commit | 2d0ea5ba085f9caa84a7e7b1fd55f653834009aa (patch) | |
tree | 46278813d2e2f7dd080c9289321c1021fa619e80 /resources.go | |
parent | ircSend* shall no longer be global variables (diff) | |
download | forge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.tar.gz forge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.tar.zst forge-2d0ea5ba085f9caa84a7e7b1fd55f653834009aa.zip |
sshPubkey* shall no longer be global variables
Diffstat (limited to 'resources.go')
-rw-r--r-- | resources.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources.go b/resources.go index b626f8d..5ecb218 100644 --- a/resources.go +++ b/resources.go @@ -20,7 +20,7 @@ var embeddedSourceFS embed.FS //go:embed hookc/hookc git2d/git2d var embeddedResourcesFS embed.FS -var templates *template.Template +var templates *template.Template //nolint:gochecknoglobals // loadTemplates minifies and loads HTML templates. func loadTemplates() (err error) { |