mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
11 lines
244 B
C#
11 lines
244 B
C#
namespace Daybreak.API.Logging;
|
|
|
|
public static class WebApplicationExtensions
|
|
{
|
|
public static WebApplication UseLogging(this WebApplication app)
|
|
{
|
|
app.UseMiddleware<LoggingEnrichmentMiddleware>();
|
|
return app;
|
|
}
|
|
}
|