1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-07 15:07:41 +00:00
Sonarr/NzbDrone/NzbDroneService.cs
2011-10-06 23:57:43 -07:00

17 lines
No EOL
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();
}
}
}