소스 검색

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

Roman Belyakovsky 9 년 전
부모
커밋
8b649abbf5
1개의 변경된 파일13개의 추가작업 그리고 6개의 파일을 삭제
  1. 13 6
      README.md

+ 13 - 6
README.md

@@ -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