mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-10 14:15:29 +00:00
17 lines
No EOL
313 B
C#
17 lines
No EOL
313 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();
|
|
}
|
|
}
|
|
} |