mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-01 10:32:51 +08:00
12 lines
319 B
C#
12 lines
319 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace Ocelot.Library.Middleware
|
|
{
|
|
public static class RequestLoggerExtensions
|
|
{
|
|
public static IApplicationBuilder UseRequestLogger(this IApplicationBuilder builder)
|
|
{
|
|
return builder.UseMiddleware<RequestLoggerMiddleware>();
|
|
}
|
|
}
|
|
} |