Initial import

This commit is contained in:
Stein Helge Riise
2025-11-17 08:32:46 +01:00
commit ede31fbb7e
129 changed files with 9514 additions and 0 deletions
@@ -0,0 +1,16 @@
namespace minattest_app_host.OpenApi
{
public static class OpenApiExtensions
{
public static void AddSwagger(this IServiceCollection services)
{
services.AddSwaggerGen();
}
public static void UseAppSwagger(this WebApplication app)
{
app.UseSwagger();
app.UseSwaggerUI();
}
}
}