mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
24 lines
469 B
C#
24 lines
469 B
C#
using System;
|
|
|
|
namespace NzbDrone.Console
|
|
{
|
|
public static class AppMain
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
|
|
NzbDrone.AppMain.Main(args);
|
|
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
System.Console.WriteLine(e.ToString());
|
|
}
|
|
|
|
System.Console.WriteLine("Press enter to exit...");
|
|
System.Console.ReadLine();
|
|
}
|
|
}
|
|
} |