Using `RateLimiter` as a Shared Layer for Concurrent API Calls
Can you use
I don't want to create a second instance of the global rate limiter.
RateLimiter as a layer? I am trying to create a layer that can be used between multiple concurrent api calls that utilize the same rate limits and would like to have them depend on the same RateLimit layer. Then I wouldn't have to colocate the API calls in a single effect (if I am understanding the docs).I don't want to create a second instance of the global rate limiter.
