summaryrefslogtreecommitdiff
path: root/code/client/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/client/Client.cs')
-rw-r--r--code/client/Client.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/Client.cs b/code/client/Client.cs
index 108fdfa..f465c6c 100644
--- a/code/client/Client.cs
+++ b/code/client/Client.cs
@@ -11,7 +11,7 @@ namespace client
{
class Client
{
- static void Main(string[] args)
+ static void Main()
{
Process.Start(Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"..\..\..\server\bin\Debug\server.exe")));
@@ -65,7 +65,7 @@ namespace client
builder.Register<AsynchronousCommandProcessor>().As<CommandProcessor>().SingletonScoped();
- builder.Register<StartedApplicationHandler>().As<Handler>();
+ builder.Register<RequestHandler>().As<Handler>();
Resolve.the<IEnumerable<NeedStartup>>().each(x => x.run());
Resolve.the<CommandProcessor>().run();