1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-08 00:16:27 +00:00
2018-02-28 13:53:29 +01:00

8 lines
135 B
C#

namespace CryptoExchange.Net.RateLimiter
{
public interface IRateLimiter
{
double LimitRequest(string url);
}
}