15 lines
314 B
C#
15 lines
314 B
C#
using Discord.Commands;
|
|
using Discord.WebSocket;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NerdsTeaserBot.Modules
|
|
{
|
|
public static class HandlesModule
|
|
{
|
|
internal static Func<SocketUserMessage, Task> OnUserMessageRecieved;
|
|
}
|
|
}
|