Directories
This commit is contained in:
26
LaDOSE.Src/LaDOSE.DiscordBot/Command/Twitch.cs
Normal file
26
LaDOSE.Src/LaDOSE.DiscordBot/Command/Twitch.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
||||
namespace LaDOSE.DiscordBot.Command
|
||||
{
|
||||
public class Result
|
||||
{
|
||||
|
||||
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");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user