Files
mixtape/zero.Api/Endpoints/NotFound/NotFoundController.cs
T

11 lines
200 B
C#
Raw Normal View History

2021-12-13 13:40:04 +01:00
using Microsoft.AspNetCore.Mvc;
namespace zero.Api.Endpoints.NotFound;
public class NotFoundZeroApiController : Controller
{
public virtual ActionResult Index()
{
return NotFound();
}
}