using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MP_API.Controllers { public class AliveController : Controller { // GET: Alive public ActionResult Index() { return View(); } } }