mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 23:29:46 +00:00
14 lines
281 B
C#
14 lines
281 B
C#
using Scalar.AspNetCore;
|
|
|
|
namespace Daybreak.API.Swagger;
|
|
|
|
public static class WebApplicationExtensions
|
|
{
|
|
public static WebApplication UseSwaggerWithUI(this WebApplication app)
|
|
{
|
|
app.MapOpenApi();
|
|
app.MapScalarApiReference();
|
|
return app;
|
|
}
|
|
}
|