2021-11-30 14:32:10 +01:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
2021-12-01 13:03:06 +01:00
|
|
|
namespace zero.Api.Endpoints.Error;
|
2021-11-30 14:32:10 +01:00
|
|
|
|
|
|
|
|
public static class ServiceCollectionExtensions
|
|
|
|
|
{
|
|
|
|
|
public static IServiceCollection AddZeroBackofficeErrorHandler(this IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|