mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-27 11:31:06 +01:00
13 lines
146 B
Go
13 lines
146 B
Go
package middleware
|
|
|
|
type (
|
|
rateLimiter struct {
|
|
*rateLimiterOpts
|
|
m *Middleware
|
|
}
|
|
|
|
rateLimiterOpts struct {
|
|
Count int `json:"count"`
|
|
}
|
|
)
|