Chatting with bot-zero-sharp
…parameters: using BotZero.Commands.Mapping; using BotZero.Commands.Mapping.Attributes; using Slack.NetStandard; [Help(“ping – pings the bot“, “ping n – pings the bot n times”)] public class PingCommand : CommandMapper { public PingCommand(SlackWebApiClient client) : base(client) { } protected async Task Callback(int times = 1)…