This commit is contained in:
Paul Schneider 2017-10-22 19:16:25 +02:00
commit 2e83a4713d
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using Microsoft.AspNet.Mvc;
namespace Yavsc.Controllers
{
public class TestController: Controller
{
public IActionResult Index()
{
return View();
}
}
}