The glamourous AI coding agent for your favourite terminal 💘
1package ratelimiter 2 3type Storage interface { 4 GetBucketFor(string) (*LeakyBucket, error) 5 SetBucketFor(string, LeakyBucket) error 6}