diff --git a/src/Medulla.Frontend/Server/Program.cs b/src/Medulla.Frontend/Server/Program.cs index f8fbe128..0328d044 100644 --- a/src/Medulla.Frontend/Server/Program.cs +++ b/src/Medulla.Frontend/Server/Program.cs @@ -2,6 +2,9 @@ // The Medulla Contributors licenses this file to you under the Apache 2.0 license. // See the LICENSE file in the project root for more information. +using Microsoft.AspNetCore.Builder; +using Microsoft.Extensions.Hosting; + var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); @@ -21,5 +24,4 @@ app.UseStaticFiles(); app.MapFallbackToFile("index.html"); - app.Run();