mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-16 14:25:52 +08:00
7 lines
133 B
Go
7 lines
133 B
Go
package ratelimiter
|
|
|
|
type Storage interface {
|
|
GetBucketFor(string) (*LeakyBucket, error)
|
|
SetBucketFor(string, LeakyBucket) error
|
|
}
|