1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/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();
}
}
}