12 lines
250 B
C#
12 lines
250 B
C#
using Diary.Shared;
|
|
|
|
namespace Diary.Installers
|
|
{
|
|
public static class InstallExceptionsMiddleware
|
|
{
|
|
public static void AddExceptionsMiddleware(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<ExceptionHandlingMiddleware>();
|
|
}
|
|
}
|
|
} |