Fix the comments and deleted the println
Showing
3 changed files
with
12 additions
and
2 deletions
| 1 | // Beego (http://beego.me/) | 1 | // Beego (http://beego.me/) |
| 2 | // | ||
| 2 | // @description beego is an open-source, high-performance web framework for the Go programming language. | 3 | // @description beego is an open-source, high-performance web framework for the Go programming language. |
| 4 | // | ||
| 3 | // @link http://github.com/astaxie/beego for the canonical source repository | 5 | // @link http://github.com/astaxie/beego for the canonical source repository |
| 6 | // | ||
| 4 | // @license http://github.com/astaxie/beego/blob/master/LICENSE | 7 | // @license http://github.com/astaxie/beego/blob/master/LICENSE |
| 8 | // | ||
| 5 | // @authors astaxie | 9 | // @authors astaxie |
| 6 | package beego | 10 | package beego |
| 7 | 11 | ... | ... |
| 1 | // Beego (http://beego.me/) | 1 | // Beego (http://beego.me/) |
| 2 | // | ||
| 2 | // @description beego is an open-source, high-performance web framework for the Go programming language. | 3 | // @description beego is an open-source, high-performance web framework for the Go programming language. |
| 4 | // | ||
| 3 | // @link http://github.com/astaxie/beego for the canonical source repository | 5 | // @link http://github.com/astaxie/beego for the canonical source repository |
| 6 | // | ||
| 4 | // @license http://github.com/astaxie/beego/blob/master/LICENSE | 7 | // @license http://github.com/astaxie/beego/blob/master/LICENSE |
| 8 | // | ||
| 5 | // @authors astaxie | 9 | // @authors astaxie |
| 6 | |||
| 7 | package beego | 10 | package beego |
| 8 | 11 | ||
| 9 | var indexTpl = ` | 12 | var indexTpl = ` | ... | ... |
| 1 | // Beego (http://beego.me/) | 1 | // Beego (http://beego.me/) |
| 2 | // | ||
| 2 | // @description beego is an open-source, high-performance web framework for the Go programming language. | 3 | // @description beego is an open-source, high-performance web framework for the Go programming language. |
| 4 | // | ||
| 3 | // @link http://github.com/astaxie/beego for the canonical source repository | 5 | // @link http://github.com/astaxie/beego for the canonical source repository |
| 6 | // | ||
| 4 | // @license http://github.com/astaxie/beego/blob/master/LICENSE | 7 | // @license http://github.com/astaxie/beego/blob/master/LICENSE |
| 8 | // | ||
| 5 | // @authors astaxie | 9 | // @authors astaxie |
| 6 | package toolbox | 10 | package toolbox |
| 7 | 11 | ||
| ... | @@ -95,7 +99,6 @@ func (m *UrlMap) GetMap() [][]string { | ... | @@ -95,7 +99,6 @@ func (m *UrlMap) GetMap() [][]string { |
| 95 | resultLists = append(resultLists, result) | 99 | resultLists = append(resultLists, result) |
| 96 | } | 100 | } |
| 97 | } | 101 | } |
| 98 | fmt.Println(resultLists) | ||
| 99 | return resultLists | 102 | return resultLists |
| 100 | } | 103 | } |
| 101 | 104 | ... | ... |
-
Please register or sign in to post a comment