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