14 lines
216 B
Go
14 lines
216 B
Go
package ratelimiter
|
|
|
|
import "time"
|
|
|
|
type Limiter interface {
|
|
Allow(ip string) (bool, time.Duration)
|
|
}
|
|
|
|
type Config struct {
|
|
RequestsPerTimeFrame int
|
|
TimeFrame time.Duration
|
|
Enabled bool
|
|
}
|