mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
11 lines
231 B
C#
11 lines
231 B
C#
namespace Jackett.Common.Services.Interfaces
|
|
{
|
|
public interface IUpdateService
|
|
{
|
|
void StartUpdateChecker();
|
|
void CheckForUpdatesNow();
|
|
void CleanupTempDir();
|
|
void CheckUpdaterLock();
|
|
}
|
|
}
|