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