Merge branch 'master' of github.com:gin-gonic/gin

This commit is contained in:
Manu Mtz-Almeida 2014-07-08 01:10:35 +02:00
commit f973263072

View File

@ -21,7 +21,7 @@ Yes, Gin is an internal project of [my](https://github.com/manucorporat) upcomin
- Improve JSON/XML validation using bindings
- Improve XML support
- Improve documentation
- Add more cool middlewares, for example redis catching (this also helps developers to understand the framework)
- Add more cool middlewares, for example redis caching (this also helps developers to understand the framework)
- Continuous integration
@ -294,7 +294,7 @@ func main() {
r.Use(Logger())
r.GET("/test", func(c *gin.Context){
example := r.Get("example").(string)
example := c.Get("example").(string)
// it would print: "12345"
log.Println(example)