1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 13:02:47 +01:00
Radarr/NzbDrone.Console/ConsoleApp.cs

22 lines
470 B
C#
Raw Normal View History

2013-03-01 01:50:50 +01:00
using System;
namespace NzbDrone.Console
{
public static class ConsoleApp
2013-03-01 01:50:50 +01:00
{
public static void Main(string[] args)
{
try
{
Host.Bootstrap.Start(args);
2013-03-01 01:50:50 +01:00
}
catch (Exception e)
2013-03-01 01:50:50 +01:00
{
System.Console.WriteLine(e.ToString());
}
System.Console.WriteLine("Press enter to exit...");
System.Console.ReadLine();
}
}
}