feat(backend): scaffold ASP.NET Core Web API + xunit test project
This commit is contained in:
5
Backend/Program.cs
Normal file
5
Backend/Program.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
// Placeholder. Rewritten in Task 6.
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
app.MapGet("/", () => "GameCli Backend placeholder");
|
||||
app.Run();
|
||||
Reference in New Issue
Block a user