16 lines
280 B
C#
16 lines
280 B
C#
|
|
using DocuMed.Api.Views.Home;
|
|||
|
|
using Microsoft.AspNetCore.Authorization;
|
|||
|
|
|
|||
|
|
namespace DocuMed.Api.Controllers;
|
|||
|
|
|
|||
|
|
[Route("")]
|
|||
|
|
[AllowAnonymous]
|
|||
|
|
public class HomeController : Controller
|
|||
|
|
{
|
|||
|
|
public IActionResult Index()
|
|||
|
|
{
|
|||
|
|
return View("Index", new IndexModel());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|