Start on dockerization
Edited freezerDto a tad
This commit is contained in:
14
Controllers/IndexController.cs
Normal file
14
Controllers/IndexController.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.AspNetCore.Http.HttpResults;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace ThuisApi.Controllers;
|
||||
|
||||
public class IndexController : ControllerBase
|
||||
{
|
||||
[Route("")]
|
||||
[Route("api")]
|
||||
public IActionResult Index()
|
||||
{
|
||||
return Ok("nice");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user