mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-15 06:36:35 +00:00

- Updates fips-go to be the latest on cfsetup.yaml - Updates sumtype's x/tools to be latest to avoid Internal: nil pkg errors with fips.
7 lines
133 B
Go
7 lines
133 B
Go
package ratelimiter
|
|
|
|
type Storage interface {
|
|
GetBucketFor(string) (*LeakyBucket, error)
|
|
SetBucketFor(string, LeakyBucket) error
|
|
}
|