Files
Moonlight/Moonlight.ApiServer/Interfaces/Startup/IEndpointStartup.cs
2024-10-28 21:30:00 +01:00

6 lines
160 B
C#

namespace Moonlight.ApiServer.Interfaces.Startup;
public interface IEndpointStartup
{
public Task ConfigureEndpoints(IEndpointRouteBuilder routeBuilder);
}