Sonarr/NzbDrone/NzbDroneService.cs

17 lines
312 B
C#

using System.ServiceProcess;
namespace NzbDrone
{
internal class NzbDroneService : ServiceBase
{
protected override void OnStart(string[] args)
{
base.OnStart(args);
}
protected override void OnStop()
{
base.OnStop();
}
}
}