mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
17 lines
301 B
C#
17 lines
301 B
C#
using API.Interfaces;
|
|
using Hangfire;
|
|
|
|
namespace API.Services
|
|
{
|
|
public class TaskScheduler : ITaskScheduler
|
|
{
|
|
private readonly BackgroundJobServer _client;
|
|
|
|
public TaskScheduler()
|
|
{
|
|
_client = new BackgroundJobServer();
|
|
}
|
|
|
|
|
|
}
|
|
} |