Dev Branch yay!

This commit is contained in:
2026-02-28 21:59:37 +00:00
parent c3f8f4592c
commit 56dd6a6166
4 changed files with 22 additions and 86 deletions

14
Commands/SourceCommand.cs Normal file
View File

@@ -0,0 +1,14 @@
using Valour.Sdk.Models;
namespace Reactor.Commands;
public static class SourceComamnd
{
public static async Task Execute(Dictionary<long, Channel> channelCache, long channelId, string memberPing)
{
if (channelCache.TryGetValue(channelId, out var channel))
{
await channel.SendMessageAsync($"{memberPing} You can see my source code here: https://github.com/SkyJoshua/Reactor");
}
}
}