mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 22:10:11 -04:00
9 lines
259 B
C#
9 lines
259 B
C#
using Cleanuparr.Persistence.Models.Configuration.General;
|
|
|
|
namespace Cleanuparr.Infrastructure.Services.Interfaces;
|
|
|
|
public interface IConnectivityChecker
|
|
{
|
|
Task<bool> IsOnlineAsync(GeneralConfig config, CancellationToken cancellationToken = default);
|
|
}
|