chore: init project

This commit is contained in:
cesnimda
2026-06-30 15:53:32 +02:00
commit f43ef5f945
94 changed files with 4405 additions and 0 deletions
@@ -0,0 +1,14 @@
using FluentValidation;
using Microsoft.Extensions.DependencyInjection;
namespace InboxIntel.Application;
public static class DependencyInjection
{
/// <summary>Registers Application-layer services (validators, etc.).</summary>
public static IServiceCollection AddApplication(this IServiceCollection services)
{
services.AddValidatorsFromAssembly(typeof(DependencyInjection).Assembly);
return services;
}
}