mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
8 lines
135 B
C#
8 lines
135 B
C#
namespace CryptoExchange.Net.RateLimiter
|
|
{
|
|
public interface IRateLimiter
|
|
{
|
|
double LimitRequest(string url);
|
|
}
|
|
}
|