1
0
This repository has been archived on 2023-08-03. You can view files and clone it, but cannot push or open issues or pull requests.
budet-cho-bot/Budet-cho-bot/Modules/InfoModule.cs
Dmitrii Kollerov 784ece36cd initial
2023-07-14 20:19:56 +07:00

14 lines
376 B
C#

using Discord.Commands;
namespace Budet_cho_bot.Modules;
public class InfoModule : ModuleBase<SocketCommandContext>
{
// ~say hello world -> hello world
[Command("say")]
[Summary("Echoes a message.")]
public Task SayAsync([Remainder] [Summary("The text to echo")] string echo)
=> ReplyAsync(echo);
// ReplyAsync is a method on ModuleBase
}