mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2024-11-20 12:29:53 +01:00
fix(backend): add default limiter to rate limiter
This commit is contained in:
parent
c95285e26b
commit
b92ced7d1a
1 changed files with 3 additions and 2 deletions
|
@ -29,8 +29,9 @@ type scopedLimiter struct {
|
|||
|
||||
func NewLimiter(defaultLimit int, windowLength time.Duration, options ...httprate.Option) *Limiter {
|
||||
return &Limiter{
|
||||
windowLength: windowLength,
|
||||
options: options,
|
||||
windowLength: windowLength,
|
||||
options: options,
|
||||
defaultLimiter: httprate.Limit(defaultLimit, windowLength, options...),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue