diff --git a/src/Tgstation.Server.Host/Components/Chat/Commands/CommandFactory.cs b/src/Tgstation.Server.Host/Components/Chat/Commands/CommandFactory.cs
index fd1e731c5e..a9bd873534 100644
--- a/src/Tgstation.Server.Host/Components/Chat/Commands/CommandFactory.cs
+++ b/src/Tgstation.Server.Host/Components/Chat/Commands/CommandFactory.cs
@@ -24,6 +24,7 @@ namespace Tgstation.Server.Host.Components.Chat.Commands
///
public IReadOnlyList GenerateCommands() => new List
{
+ new KekCommand(),
new VersionCommand(application)
};
}
diff --git a/src/Tgstation.Server.Host/Components/Chat/Commands/KekCommand.cs b/src/Tgstation.Server.Host/Components/Chat/Commands/KekCommand.cs
new file mode 100644
index 0000000000..d608190e22
--- /dev/null
+++ b/src/Tgstation.Server.Host/Components/Chat/Commands/KekCommand.cs
@@ -0,0 +1,14 @@
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace Tgstation.Server.Host.Components.Chat.Commands
+{
+ ///
+ /// kek
+ ///
+ sealed class KekCommand : BuiltinCommand
+ {
+ ///
+ public override Task Invoke(string arguments, User user, CancellationToken cancellationToken) => Task.FromResult("kek");
+ }
+}