1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Console/ConsoleApp.cs

31 lines
702 B
C#
Raw Normal View History

2013-03-01 01:50:50 +01:00
using System;
2013-08-21 00:48:10 +02:00
using System.Threading;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Host;
2013-03-01 01:50:50 +01:00
namespace NzbDrone.Console
{
public static class ConsoleApp
2013-03-01 01:50:50 +01:00
{
public static void Main(string[] args)
{
try
{
Bootstrap.Start(new StartupArguments(args), new ConsoleAlerts());
}
catch (TerminateApplicationException)
{
2013-03-01 01:50:50 +01:00
}
catch (Exception e)
2013-03-01 01:50:50 +01:00
{
System.Console.WriteLine(e.ToString());
2013-08-21 00:48:10 +02:00
System.Console.ReadLine();
2013-03-01 01:50:50 +01:00
}
2013-08-21 00:48:10 +02:00
while (true)
{
2013-08-21 00:48:10 +02:00
Thread.Sleep(10 * 60);
}
2013-03-01 01:50:50 +01:00
}
}
}