Added note for net/http import and fixed numbering in readme

This commit is contained in:
Roman Belyakovsky 2016-02-24 17:02:40 +03:00
parent b3878c2465
commit 8b649abbf5
1 changed files with 13 additions and 6 deletions

View File

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