Skip to content

Instantly share code, notes, and snippets.

@emrekizildas
Created March 19, 2019 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emrekizildas/03fe69945b40a1d62e61b786610819ba to your computer and use it in GitHub Desktop.
Save emrekizildas/03fe69945b40a1d62e61b786610819ba to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace CoreAPI.Controllers
{
[Route("[controller]/[action]")]
public class HomeController : Controller
{
// GET: /<controller>/
public IActionResult Index()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment