Files
Moonlight/Moonlight.ApiServer/DevServer.cs
Masu Baumgartner 18810766ed DevServer things :>
2024-11-08 23:53:06 +01:00

10 lines
218 B
C#

namespace Moonlight.ApiServer;
public static class DevServer
{
public async static Task Run(string[] args)
{
Console.WriteLine("Preparing development server");
await Program.Main(args);
}
}