|
using System.Text.Json.Serialization;
|
|
|
|
namespace AS1024.GeoFeed.MinimalAPI
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var builder = WebApplication.CreateSlimBuilder(args);
|
|
|
|
var app = builder.Build();
|
|
var geoFeed = app.MapGroup("/geofeed.csv");
|
|
|
|
app.Run();
|
|
}
|
|
}
|
|
|
|
}
|