From 91f97a65b2c6d1fad3a211a6739a49d9908f69a2 Mon Sep 17 00:00:00 2001 From: Michael VanOverbeek Date: Wed, 15 Feb 2017 21:30:58 +0000 Subject: whoa mud refactoring --- ShiftOS.Server/RemoteTerminal.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ShiftOS.Server/RemoteTerminal.cs') diff --git a/ShiftOS.Server/RemoteTerminal.cs b/ShiftOS.Server/RemoteTerminal.cs index 6742e44..c78aca1 100644 --- a/ShiftOS.Server/RemoteTerminal.cs +++ b/ShiftOS.Server/RemoteTerminal.cs @@ -11,7 +11,7 @@ namespace ShiftOS.Server { public static class RemoteTerminal { - [MudRequest("trm_handshake_accept")] + [MudRequest("trm_handshake_accept", typeof(Dictionary))] public static void AcceptHandshake(string guid, object contents) { var args = contents as Dictionary; @@ -26,7 +26,7 @@ namespace ShiftOS.Server } } - [MudRequest("trm_invcmd")] + [MudRequest("trm_invcmd", typeof(Dictionary))] public static void InvokeCommand(string guid, object contents) { Console.WriteLine("Before arg check"); @@ -48,7 +48,7 @@ namespace ShiftOS.Server } - [MudRequest("trm_handshake_request")] + [MudRequest("trm_handshake_request", typeof(Dictionary))] public static void RequestHandshake(string guid, object contents) { var args = contents as Dictionary; @@ -63,7 +63,7 @@ namespace ShiftOS.Server } } - [MudRequest("trm_handshake_stop")] + [MudRequest("trm_handshake_stop", typeof(Dictionary))] public static void StopSession(string guid, object contents) { var args = contents as Dictionary; @@ -78,7 +78,7 @@ namespace ShiftOS.Server } - [MudRequest("write")] + [MudRequest("write", typeof(Dictionary))] public static void WriteText(string guid, object contents) { var args = contents as Dictionary; -- cgit v1.2.3