diff --git a/src/Aiursoft.ChessServer/Program.cs b/src/Aiursoft.ChessServer/Program.cs index 02477b4..f7a5770 100644 --- a/src/Aiursoft.ChessServer/Program.cs +++ b/src/Aiursoft.ChessServer/Program.cs @@ -1,6 +1,5 @@ using System.Reflection; using Aiursoft.Scanner; -using Aiursoft.WebTools; using Aiursoft.WebTools.Models; namespace Aiursoft.ChessServer; @@ -9,7 +8,7 @@ public class Program { public static async Task Main(string[] args) { - var app = Aiursoft.WebTools.Extends.App(args); + var app = WebTools.Extends.App(args); await app.RunAsync(); } }