mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
0b586de226
A bunch of files changed removing System.Linq, thanks Resharper :(
20 lines
510 B
C#
20 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class StreamController : Controller
|
|
{
|
|
//
|
|
// GET: /Stream/
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return File(@"Z:\Clone High\Season 1\S01E02 - Episode Two- Election Blu-Galoo.avi", "video/divx");
|
|
//return File(@"Z:\30 Rock\Season 5\S05E04 - Live Show (East Coast Taping) - HD TV.mkv", "video/divx");
|
|
}
|
|
}
|
|
}
|