modernuo/Projects/Application/Application.cs

13 lines
236 B
C#
Raw Permalink Normal View History

using System.Diagnostics;
using System.Reflection;
namespace Server;
public class Application
{
public static void Main(string[] args)
{
Core.Setup(Assembly.GetEntryAssembly(), Process.GetCurrentProcess());
}
}