1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Console/ConsoleApp.cs

22 lines
470 B
C#

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