mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
12 lines
298 B
C#
12 lines
298 B
C#
|
|
using Microsoft.AspNetCore.Builder;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Bbs.Application.Extensions;
|
|||
|
|
|
|||
|
|
public static class AccessLogExtensions
|
|||
|
|
{
|
|||
|
|
public static IApplicationBuilder UseAccessLog(this IApplicationBuilder app)
|
|||
|
|
{
|
|||
|
|
app.UseMiddleware<AccessLogMiddleware>();
|
|||
|
|
return app;
|
|||
|
|
}
|
|||
|
|
}
|