Initial commit

This commit is contained in:
2025-02-22 11:32:47 -06:00
commit 0184b18ba9
6 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace ALttPRandomizer {
using ALttPRandomizer.Model;
using Microsoft.AspNetCore.Mvc;
public class GenerateController : Controller {
[Route("/generate")]
[HttpPost]
public ActionResult Generate(SeedSettings settings) {
return Content("Hello world");
}
}
}