using MangaReader.Core.Search; using MangaReader.Core.Search.MangaDex; using MangaReader.Core.Sources.NatoManga.Search; using Microsoft.Extensions.DependencyInjection.Extensions; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; #pragma warning disable IDE0130 // Namespace does not match folder structure namespace Microsoft.Extensions.DependencyInjection; #pragma warning restore IDE0130 // Namespace does not match folder structure public static class ServiceCollectionExtensions { public static IServiceCollection AddMangaReader(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } }