DevServer things :>

This commit is contained in:
Masu Baumgartner
2024-11-08 23:53:06 +01:00
parent 764ebe3586
commit 18810766ed
2 changed files with 148 additions and 136 deletions

View File

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