mirror of
https://github.com/ChronosX88/go-throttle.git
synced 2024-11-09 16:11:01 +00:00
12 lines
183 B
Go
12 lines
183 B
Go
|
package throttle
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Config struct {
|
||
|
NumTokens float64
|
||
|
Delay time.Duration
|
||
|
RefillRate float64
|
||
|
DefaultCost float64
|
||
|
Capacity float64
|
||
|
MaxCapacity int
|
||
|
}
|