Add support for Twilight gateway queue

This commit is contained in:
Ske
2021-06-09 16:22:10 +02:00
parent 333530d24d
commit 26dc69e5a4
8 changed files with 70 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Myriad.Gateway.Limit
{
public interface IGatewayRatelimiter
{
public Task Identify(int shard);
}
}