Initial Commit

This commit is contained in:
kay.one 2010-09-22 20:19:47 -07:00
commit 74ac3bb599
106 changed files with 118079 additions and 0 deletions

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NzbDrone.Web.Controllers
{
public class SettingsController : Controller
{
//
// GET: /Settings/
public ActionResult Index()
{
return View();
}
}
}