Merge pull request #9 from kasperfrederiksen/patch-1

Fix logrus import statement in usage section
This commit is contained in:
Stéphane Depierrepont 2021-02-25 10:29:05 +01:00 committed by GitHub
commit 2c785434f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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")
``` ```