using System.Threading;
using System.Threading.Tasks;
namespace Jellyfin.Plugin.ShareLinks.Services;
///
/// Temporary cleanup implementation used until the real cleanup pipeline lands.
///
public sealed class NoOpShareLinkCleanupService : IShareLinkCleanupService
{
///
public Task CleanupAsync(CancellationToken cancellationToken)
{
_ = cancellationToken;
return Task.CompletedTask;
}
}