Initial commit
This commit is contained in:
12
ALttPRandomizer/GenerateSeedController.cs
Normal file
12
ALttPRandomizer/GenerateSeedController.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user