1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 08:30:40 +00:00

support profile & statistics in another port

This commit is contained in:
astaxie
2013-11-13 21:11:03 +08:00
parent a981dab536
commit 6c13bdde25
9 changed files with 364 additions and 27 deletions

View File

@ -258,3 +258,7 @@ func stringsToJson(str string) string {
}
return jsons
}
func (output *BeegoOutput) Session(name interface{}, value interface{}) {
output.Context.Input.CruSession.Set(name, value)
}