From b32b12b208d73bbe4dcbd0efd29b6e7bb72ad10b Mon Sep 17 00:00:00 2001 From: astaxie Date: Thu, 25 Jul 2013 15:40:33 +0800 Subject: [PATCH] add some comments --- beego.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/beego.go b/beego.go index e1c730e9..b37e84f2 100644 --- a/beego.go +++ b/beego.go @@ -39,13 +39,13 @@ var ( SessionSavePath string // session savepath if use mysql/redis/file this set to the connectinfo UseFcgi bool MaxMemory int64 - EnableGzip bool // enable gzip - DirectoryIndex bool //ebable DirectoryIndex default is false - EnbaleHotUpdate bool //enable HotUpdate default is false - HttpServerTimeOut int64 - ErrorsShow bool - XSRFKEY string - CopyRequestBody bool + EnableGzip bool // enable gzip + DirectoryIndex bool //ebable DirectoryIndex default is false + EnbaleHotUpdate bool //enable HotUpdate default is false + HttpServerTimeOut int64 //set httpserver timeout + ErrorsShow bool //set weather show errors + XSRFKEY string //set XSRF + CopyRequestBody bool //When in raw application, You want to the reqeustbody ) func init() {