mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-04 11:33:08 -05: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();
|
|
}
|
|
|
|
|
|
}
|
|
} |