Skip to content

Commit

Permalink
📝 docs: remove README.mds from middleware dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
efectn committed Mar 6, 2023
1 parent 2e7e879 commit 15e9235
Show file tree
Hide file tree
Showing 24 changed files with 2 additions and 2,798 deletions.
4 changes: 2 additions & 2 deletions docs/api/middleware/limiter.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ app.Use(limiter.New(limiter.Config{
LimitReached: func(c *fiber.Ctx) error {
return c.SendFile("./toofast.html")
},
Storage: myCustomStorage{}
Storage: myCustomStorage{},
}))
```

Expand All @@ -59,7 +59,7 @@ A example of such configuration is:
app.Use(limiter.New(limiter.Config{
Max: 20,
Expiration: 30 * time.Second,
LimiterMiddleware: limiter.SlidingWindow{}
LimiterMiddleware: limiter.SlidingWindow{},
}))
```

Expand Down
130 changes: 0 additions & 130 deletions middleware/basicauth/README.md

This file was deleted.

159 changes: 0 additions & 159 deletions middleware/cache/README.md

This file was deleted.

Loading

0 comments on commit 15e9235

Please sign in to comment.