Merge branch 'hryamzik-develop' into develop

This commit is contained in:
Javier Provecho Fernandez 2016-02-24 19:03:26 +01:00
commit 68b8b498bd
1 changed files with 13 additions and 6 deletions

View File

@ -85,14 +85,21 @@ BenchmarkZeus_GithubAll | 2000 | 944234 | 300688 | 2648
## Start using it ## Start using it
1. Download and install it: 1. Download and install it:
```sh ```sh
$ go get github.com/gin-gonic/gin $ go get github.com/gin-gonic/gin
``` ```
2. Import it in your code: 2. Import it in your code:
```go ```go
import "github.com/gin-gonic/gin" import "github.com/gin-gonic/gin"
``` ```
3. (Optional) Import `net/http`. This is required for example if using constants such as `http.StatusOK`.
```go
import "net/http"
```
##API Examples ##API Examples