Sonarr/NzbDrone/NzbDroneService.cs

17 lines
312 B
C#
Raw Normal View History

2011-10-07 06:57:43 +00:00
using System.ServiceProcess;
namespace NzbDrone
{
2011-10-07 06:57:43 +00:00
internal class NzbDroneService : ServiceBase
{
protected override void OnStart(string[] args)
{
base.OnStart(args);
}
protected override void OnStop()
{
base.OnStop();
}
}
2011-10-07 06:57:43 +00:00
}