1
0
mirror of synced 2024-06-17 18:37:39 +00:00
Tapeti/Tapeti.Cmd/RateLimiter/NoRateLimiter.cs
2020-07-03 15:51:41 +02:00

13 lines
198 B
C#

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