using Microsoft.AspNetCore.Mvc; namespace StardewModdingAPI.Web.Controllers { /// Provides a web UI and API for parsing SMAPI log files. [Route("log")] internal class LogParserController : Controller { /********* ** Public methods *********/ /// Render the web UI to upload a log file. [HttpGet] public ViewResult Index() { return this.View("Index"); } } }