1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-15 05:31:02 +00:00

add template test and cache module

This commit is contained in:
astaxie
2013-03-14 00:14:09 +08:00
parent db329a48e7
commit 3b89071360
4 changed files with 205 additions and 17 deletions

View File

@ -13,6 +13,8 @@ import (
"strconv"
)
const VERSION = "0.0.3"
var (
BeeApp *App
AppName string
@ -218,5 +220,6 @@ func Run() {
GlobalSessions, _ = session.NewManager(SessionProvider, SessionName, SessionGCMaxLifetime)
go GlobalSessions.GC()
}
BuildTemplate(ViewsPath)
BeeApp.Run()
}