Tapeti/Tapeti.Cmd/RateLimiter/NoRateLimiter.cs

13 lines
198 B
C#

using System;
namespace Tapeti.Cmd.RateLimiter
{
public class NoRateLimiter : IRateLimiter
{
public void Execute(Action action)
{
action();
}
}
}