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