mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-02 17:04:16 +02:00
Rename TBaseObject -> GlobalBase
Remove Notification and Library Connectors from GlobalBase
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Tranga.MangaConnectors;
|
||||
|
||||
internal class DownloadClient : TBaseObject
|
||||
internal class DownloadClient : GlobalBase
|
||||
{
|
||||
private static readonly HttpClient Client = new()
|
||||
{
|
||||
@ -12,7 +12,7 @@ internal class DownloadClient : TBaseObject
|
||||
private readonly Dictionary<byte, DateTime> _lastExecutedRateLimit;
|
||||
private readonly Dictionary<byte, TimeSpan> _rateLimit;
|
||||
|
||||
public DownloadClient(Dictionary<byte, int> rateLimitRequestsPerMinute, TBaseObject clone) : base(clone)
|
||||
public DownloadClient(Dictionary<byte, int> rateLimitRequestsPerMinute, GlobalBase clone) : base(clone)
|
||||
{
|
||||
_lastExecutedRateLimit = new();
|
||||
_rateLimit = new();
|
||||
|
Reference in New Issue
Block a user