1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00
Radarr/NzbDrone/Program.cs

22 lines
456 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
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();
}
}
}