mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-08-02 19:09:26 -04:00
7 lines
133 B
Go
7 lines
133 B
Go
package ratelimiter
|
|
|
|
type Storage interface {
|
|
GetBucketFor(string) (*LeakyBucket, error)
|
|
SetBucketFor(string, LeakyBucket) error
|
|
}
|