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

22 lines
482 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
{
2019-02-20 21:54:21 +01:00
public class Twitch
2018-10-04 00:29:25 +02:00
{
2019-02-20 21:54:21 +01:00
private readonly Dependencies dep;
2018-10-04 00:29:25 +02:00
2019-02-20 21:54:21 +01:00
public Twitch(Dependencies d)
2018-10-04 00:29:25 +02:00
{
2019-02-20 21:54:21 +01:00
dep = d;
}
2018-10-04 00:29:25 +02:00
2019-02-20 21:54:21 +01:00
[Command("twitch")]
public async Task TwitchAsync(CommandContext ctx)
{
await ctx.RespondAsync("https://www.twitch.tv/LaDOSETV");
2018-10-04 00:29:25 +02:00
}
}
}