15 lines
316 B
C#
15 lines
316 B
C#
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();
|
|
}
|
|
|
|
|
|
} |