using AS1024.GeoFeed.GeoFeedBuilder; using AS1024.GeoFeed.Interfaces; namespace AS1024.GeoFeed { public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); builder.Services.AddHostedService(); builder.Services.AddTransient(); builder.Services.AddHttpClient(); builder.Services.AddMemoryCache(); // Add services to the container. builder.Services.AddControllers(); var app = builder.Build(); // Configure the HTTP request pipeline. app.UseAuthorization(); app.MapControllers(); app.Run(); } } }