mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
12 lines
146 B
Go
12 lines
146 B
Go
package middleware
|
|
|
|
type (
|
|
rateLimiter struct {
|
|
*rateLimiterOpts
|
|
m *Middleware
|
|
}
|
|
|
|
rateLimiterOpts struct {
|
|
Count int `json:"count"`
|
|
}
|
|
)
|