1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

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
+21
View File
@@ -0,0 +1,21 @@
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();
}
}
}