forked from forgejo/forgejo
move templateFuncs to one file, add middleware context.
This commit is contained in:
parent
06deed820d
commit
fa5ad1e465
10 changed files with 173 additions and 95 deletions
|
@ -15,7 +15,11 @@ import (
|
|||
"github.com/Unknwon/goconfig"
|
||||
)
|
||||
|
||||
var Cfg *goconfig.ConfigFile
|
||||
var (
|
||||
AppVer string
|
||||
AppName string
|
||||
Cfg *goconfig.ConfigFile
|
||||
)
|
||||
|
||||
func exeDir() (string, error) {
|
||||
file, err := exec.LookPath(os.Args[0])
|
||||
|
@ -52,4 +56,6 @@ func init() {
|
|||
}
|
||||
}
|
||||
Cfg.BlockMode = false
|
||||
|
||||
AppName = Cfg.MustValue("", "APP_NAME")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue