refactor(DependencyInjection): created to handle DependencyInjection

This commit is contained in:
2025-10-31 11:31:39 +01:00
parent 44ea893f05
commit 209785dda5
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.Extensions.DependencyInjection;
namespace EnvelopeGenerator.DependencyInjection;
public static class DependencyInjection
{
public static IServiceCollection AddEnvelopeGenerator(this IServiceCollection services)
{
return services;
}
}