13 lines
198 B
C#
13 lines
198 B
C#
using System;
|
|
|
|
namespace Tapeti.Cmd.RateLimiter
|
|
{
|
|
public class NoRateLimiter : IRateLimiter
|
|
{
|
|
public void Execute(Action action)
|
|
{
|
|
action();
|
|
}
|
|
}
|
|
}
|