7 lines
91 B
C#
7 lines
91 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder.Build();
|
|
|
|
|
|
|
|
app.Run();
|