Pierre Prinetti 6abb111ac6
Bump k8s to v.0.22.3
Fully address CVE-2021-3121 in the process.
2021-11-15 14:59:23 +01:00

7 lines
133 B
Go

package ratelimiter
type Storage interface {
GetBucketFor(string) (*LeakyBucket, error)
SetBucketFor(string, LeakyBucket) error
}