1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 15:00:54 +00:00

Fix the comments and deleted the println

This commit is contained in:
Lei Cao 2014-08-14 23:50:15 +08:00
parent d314d12c77
commit c347dd9e7b
3 changed files with 12 additions and 2 deletions

View File

@ -1,7 +1,11 @@
// Beego (http://beego.me/) // Beego (http://beego.me/)
//
// @description beego is an open-source, high-performance web framework for the Go programming language. // @description beego is an open-source, high-performance web framework for the Go programming language.
//
// @link http://github.com/astaxie/beego for the canonical source repository // @link http://github.com/astaxie/beego for the canonical source repository
//
// @license http://github.com/astaxie/beego/blob/master/LICENSE // @license http://github.com/astaxie/beego/blob/master/LICENSE
//
// @authors astaxie // @authors astaxie
package beego package beego

View File

@ -1,9 +1,12 @@
// Beego (http://beego.me/) // Beego (http://beego.me/)
//
// @description beego is an open-source, high-performance web framework for the Go programming language. // @description beego is an open-source, high-performance web framework for the Go programming language.
//
// @link http://github.com/astaxie/beego for the canonical source repository // @link http://github.com/astaxie/beego for the canonical source repository
//
// @license http://github.com/astaxie/beego/blob/master/LICENSE // @license http://github.com/astaxie/beego/blob/master/LICENSE
//
// @authors astaxie // @authors astaxie
package beego package beego
var indexTpl = ` var indexTpl = `

View File

@ -1,7 +1,11 @@
// Beego (http://beego.me/) // Beego (http://beego.me/)
//
// @description beego is an open-source, high-performance web framework for the Go programming language. // @description beego is an open-source, high-performance web framework for the Go programming language.
//
// @link http://github.com/astaxie/beego for the canonical source repository // @link http://github.com/astaxie/beego for the canonical source repository
//
// @license http://github.com/astaxie/beego/blob/master/LICENSE // @license http://github.com/astaxie/beego/blob/master/LICENSE
//
// @authors astaxie // @authors astaxie
package toolbox package toolbox
@ -95,7 +99,6 @@ func (m *UrlMap) GetMap() [][]string {
resultLists = append(resultLists, result) resultLists = append(resultLists, result)
} }
} }
fmt.Println(resultLists)
return resultLists return resultLists
} }