Skip to content

Commit

Permalink
Fix import case (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
avignat authored and appleboy committed Aug 2, 2017
1 parent d4fc5a9 commit b0ba255
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ginrus/example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"os"
"time"

"github.com/Sirupsen/logrus"
"github.com/gin-gonic/contrib/ginrus"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion ginrus/ginrus.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ package ginrus
import (
"time"

"github.com/Sirupsen/logrus"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
)

// Ginrus returns a gin.HandlerFunc (middleware) that logs requests using logrus.
Expand Down

0 comments on commit b0ba255

Please sign in to comment.