1
0
mirror of synced 2024-07-01 08:17:39 +00:00
Tapeti/Tapeti.Cmd/RateLimiter/IRateLimiter.cs
2020-07-03 15:51:41 +02:00

10 lines
138 B
C#

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