[CHANGE] Working on client manager

This commit is contained in:
max
2025-08-31 21:36:53 +02:00
parent 2f018d131e
commit 0ab0a029c4
2 changed files with 41 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
using Manager.YouTube;
namespace Manager.App.Services.System;
public class ClientManager : BackgroundService
{
private readonly List<YouTubeClient> _clients = [];
protected override Task ExecuteAsync(CancellationToken stoppingToken)
{
throw new NotImplementedException();
}
}