Files
Moonlight/Moonlight.Client/Program.cs

13 lines
155 B
C#

using Moonlight.Client;
var startup = new Startup();
try
{
await startup.Run(args);
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}