mirror of https://github.com/ivanch/tcc.git
18 lines
334 B
C#
18 lines
334 B
C#
|
namespace tcc_app
|
||
|
{
|
||
|
public class Program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
builder.Services.AddControllers();
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
app.MapControllers();
|
||
|
|
||
|
app.Run();
|
||
|
}
|
||
|
}
|
||
|
}
|