1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-25 12:20:55 +00:00

add TemplateCache

This commit is contained in:
xiemengjun 2013-01-06 10:15:08 +08:00
parent 8e90ddd577
commit 45710c3a3b

View File

@ -4,6 +4,7 @@ import (
"fmt"
"github.com/astaxie/session"
_ "github.com/astaxie/session/providers/memory"
"html/template"
"net/http"
"os"
"path"
@ -15,6 +16,7 @@ var (
AppName string
AppPath string
StaticDir map[string]string
TemplateCache map[string]*template.Template
HttpAddr string
HttpPort int
RecoverPanic bool
@ -36,6 +38,7 @@ func init() {
BeeApp = NewApp()
AppPath, _ = os.Getwd()
StaticDir = make(map[string]string)
TemplateCache = make(map[string]*template.Template)
var err error
AppConfig, err = LoadConfig(path.Join(AppPath, "conf", "app.conf"))
if err != nil {