1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-10 23:29:53 +02:00
Sonarr/NzbDrone/NzbDroneService.cs

17 lines
312 B
C#
Raw Normal View History

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