11 lines
No EOL
268 B
C#
11 lines
No EOL
268 B
C#
using Iceshrimp.Backend.Core.Middleware;
|
|
|
|
namespace Iceshrimp.Backend.Core.Helpers;
|
|
|
|
public static class AppExtensions {
|
|
public static WebApplication UseCustomMiddleware(this WebApplication app) {
|
|
app.UseMiddleware<RequestBufferingMiddleware>();
|
|
|
|
return app;
|
|
}
|
|
} |