mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 07:04:57 +01:00
Adds the kek command
Critical priority feature
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user