19 lines
435 B
C#
19 lines
435 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace InnovEnergy.App.DataCollectorWebApp;
|
|
|
|
public static class Program
|
|
{
|
|
public static async Task Main(string[] args)
|
|
{
|
|
Console.WriteLine("Starting DataCollectorWebApp");
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddControllers();
|
|
var app = builder.Build();
|
|
|
|
app.MapControllers();
|
|
await app.RunAsync();
|
|
}
|
|
} |