mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
13 lines
211 B
C#
13 lines
211 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Podsync.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|