More API Requests

This commit is contained in:
2023-08-26 02:43:24 +02:00
parent 0cf3a95f58
commit a8f0f1af15
3 changed files with 77 additions and 15 deletions

View File

@ -1,11 +1,10 @@
using System.Runtime.CompilerServices;
using Tranga.MangaConnectors;
using Tranga.MangaConnectors;
namespace Tranga.Jobs;
public class JobBoss : GlobalBase
{
private HashSet<Job> jobs { get; init; }
public HashSet<Job> jobs { get; init; }
private Dictionary<MangaConnector, Queue<Job>> mangaConnectorJobQueue { get; init; }
public JobBoss(GlobalBase clone) : base(clone)