Files
AZKi/AZKi Server/Services/FileScannerService.cs
2026-01-14 20:20:27 -05:00

17 lines
318 B
C#

namespace AZKiServer.Services;
public class FileScannerService : IHostedService
{
public Task StartAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public Task StopAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}