7 lines
133 B
Go
Raw Normal View History

2022-04-01 12:16:46 -04:00
package ratelimiter
type Storage interface {
GetBucketFor(string) (*LeakyBucket, error)
SetBucketFor(string, LeakyBucket) error
}