using Microsoft.Extensions.DependencyInjection; using SatelliteProvider.Common.Interfaces; namespace SatelliteProvider.Services.TileDownloader; public static class TileDownloaderServiceCollectionExtensions { public static IServiceCollection AddTileDownloader(this IServiceCollection services) { services.AddMemoryCache(); services.AddSingleton(); services.AddSingleton(); return services; } }