Files
mixtape/zero.ApiTry/Controllers/FrontendController.cs
T
2021-12-13 11:37:45 +01:00

17 lines
342 B
C#

using Microsoft.AspNetCore.Mvc;
namespace zero.ApiTry
{
public class FrontendController : Controller
{
public ActionResult Index()
{
return new ContentResult()
{
Content = "This is our <b>frontend</b><br>url:" + Request.Path,
ContentType = "text/html",
StatusCode = 200
};
}
}
}