Files
LaDOSE/LaDOSE.Src/LaDOSE.DiscordBot/Command/Twitch.cs

26 lines
566 B
C#
Raw Normal View History

2018-10-04 00:29:25 +02:00
using System.Threading.Tasks;
using DSharpPlus.CommandsNext;
using DSharpPlus.CommandsNext.Attributes;
namespace LaDOSE.DiscordBot.Command
{
2018-10-04 01:32:33 +02:00
public class Result
2018-10-04 00:29:25 +02:00
{
internal class Twitch
{
Dependencies dep;
public Twitch(Dependencies d)
{
this.dep = d;
}
[Command("twitch")]
public async Task TwitchAsync(CommandContext ctx)
{
await ctx.RespondAsync("https://www.twitch.tv/LaDOSETV");
}
}
}
}