1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-16 07:19:51 +02:00
Radarr/NzbDrone/Program.cs
2010-09-22 20:19:47 -07:00

22 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Console
{
class Program
{
static void Main(string[] args)
{
var server = new CassiniDev.CassiniDevServer();
server.StartServer(@"D:\Opensource\Spongebob\NzbDrone.Web");
System.Console.WriteLine(server.NormalizeUrl(@"series"));
System.Console.ReadLine();
}
}
}