|
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());
|
|
}
|
|
}
|
|
|