RegexBot/Feature/AutoRespond/AutoRespond_Process.cs

20 lines
391 B
C#
Raw Normal View History

2017-08-11 15:23:20 +00:00
using Discord.WebSocket;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Noikoio.RegexBot.Feature.AutoRespond
{
partial class AutoRespond
{
private async Task ProcessMessage(SocketMessage msg, ResponseDefinition def)
{
// Filtering checks
// Rate limit checks
}
}
}