1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00
Files
Sonarr/NzbDrone.Console/ConsoleApp.cs
T

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();
}
}
}