mirror of https://github.com/toorop/gin-logrus.git
Merge pull request #9 from kasperfrederiksen/patch-1
Fix logrus import statement in usage section
This commit is contained in:
commit
2c785434f2
|
@ -7,7 +7,7 @@
|
||||||
## Usage
|
## Usage
|
||||||
```go
|
```go
|
||||||
import (
|
import (
|
||||||
"github.com/Sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/toorop/gin-logrus"
|
"github.com/toorop/gin-logrus"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
|
||||||
|
@ -23,4 +23,4 @@ r.GET("/ping", func(c *gin.Context) {
|
||||||
})
|
})
|
||||||
|
|
||||||
r.Run("127.0.0.1:8080")
|
r.Run("127.0.0.1:8080")
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue