1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 11:20:56 +00:00
This commit is contained in:
astaxie 2013-08-03 18:18:09 +08:00
parent 5b3b6f7f48
commit f7dd376596

View File

@ -12,7 +12,7 @@ type FlashData struct {
func NewFlash() *FlashData {
return &FlashData{
Data:make(map[string]string)
Data: make(map[string]string),
}
}