Adds the kek command

Critical priority feature
This commit is contained in:
Cyberboss
2018-07-19 15:37:08 -04:00
parent 64ef419ed0
commit 197bf8908b
2 changed files with 15 additions and 0 deletions
@@ -24,6 +24,7 @@ namespace Tgstation.Server.Host.Components.Chat.Commands
/// <inheritdoc />
public IReadOnlyList<ICommand> GenerateCommands() => new List<ICommand>
{
new KekCommand(),
new VersionCommand(application)
};
}
@@ -0,0 +1,14 @@
using System.Threading;
using System.Threading.Tasks;
namespace Tgstation.Server.Host.Components.Chat.Commands
{
/// <summary>
/// kek
/// </summary>
sealed class KekCommand : BuiltinCommand
{
/// <inheritdoc />
public override Task<string> Invoke(string arguments, User user, CancellationToken cancellationToken) => Task.FromResult("kek");
}
}