10 lines
138 B
C#
10 lines
138 B
C#
using System;
|
|
|
|
namespace Tapeti.Cmd.RateLimiter
|
|
{
|
|
public interface IRateLimiter
|
|
{
|
|
void Execute(Action action);
|
|
}
|
|
}
|