mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-24 06:21:15 +01:00
* go.mod: Vendor coreos/go-iptables 0.4.5 * go.mod: Vendor containernetworking/plugins v0.8.0 * Update implementation to work with libcni 0.8.0 * go.mod: Vendor containernetworking/plugins v0.9.0
7 lines
133 B
Go
7 lines
133 B
Go
package ratelimiter
|
|
|
|
type Storage interface {
|
|
GetBucketFor(string) (*LeakyBucket, error)
|
|
SetBucketFor(string, LeakyBucket) error
|
|
}
|