Files
ChessServer/src/Aiursoft.ChessServer/Program.cs
T
2024-03-15 07:42:00 +00:00

13 lines
289 B
C#

using System.Diagnostics.CodeAnalysis;
namespace Aiursoft.ChessServer;
[ExcludeFromCodeCoverage]
public abstract class Program
{
public static async Task Main(string[] args)
{
var app = await WebTools.Extends.AppAsync<Startup>(args);
await app.RunAsync();
}
}