mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
12 lines
246 B
C#
12 lines
246 B
C#
namespace Daybreak.API.Swagger;
|
|
|
|
public static class WebApplicationExtensions
|
|
{
|
|
public static WebApplication UseSwaggerWithUI(this WebApplication app)
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
return app;
|
|
}
|
|
}
|