Jackett/src/Jackett.Common/Services/Interfaces/IServiceConfigService.cs

13 lines
261 B
C#

namespace Jackett.Common.Services.Interfaces
{
public interface IServiceConfigService
{
void Install();
void Uninstall();
bool ServiceExists();
bool ServiceRunning();
void Start();
void Stop();
}
}