Cleaned up the startup sequence.

This commit is contained in:
Masu Baumgartner
2024-10-28 21:30:00 +01:00
parent f6ed12fc7a
commit e02af774a9
10 changed files with 402 additions and 166 deletions

View File

@@ -0,0 +1,6 @@
namespace Moonlight.ApiServer.Interfaces.Startup;
public interface IEndpointStartup
{
public Task ConfigureEndpoints(IEndpointRouteBuilder routeBuilder);
}