mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
17 lines
298 B
C#
17 lines
298 B
C#
using API.Interfaces;
|
|
using Hangfire;
|
|
|
|
namespace API.Services
|
|
{
|
|
public class TaskScheduler : ITaskScheduler
|
|
{
|
|
private BackgroundJobServer Client { get; }
|
|
|
|
public TaskScheduler()
|
|
{
|
|
Client = new BackgroundJobServer();
|
|
}
|
|
|
|
|
|
}
|
|
} |