forked from amkovkov/GranuSightSoftware2
fix: typos
TOO many typos
This commit is contained in:
@@ -16,14 +16,14 @@ namespace GSS2.Test;
|
||||
|
||||
public partial class Program
|
||||
{
|
||||
private class ImagesStorateClearWorker : BackgroundService
|
||||
private class ImagesStorageClearWorker : BackgroundService
|
||||
{
|
||||
private readonly ILogger<ImagesStorateClearWorker> _logger;
|
||||
private readonly ILogger<ImagesStorageClearWorker> _logger;
|
||||
private readonly IHostApplicationLifetime _applicationLifetime;
|
||||
private readonly AmineContentCalibrationContext _context;
|
||||
private readonly ImageStorageService _imageStorageService;
|
||||
|
||||
public ImagesStorateClearWorker(ILogger<ImagesStorateClearWorker> logger, IHostApplicationLifetime applicationLifetime, AmineContentCalibrationContext context, ImageStorageService imageStorageService)
|
||||
public ImagesStorageClearWorker(ILogger<ImagesStorageClearWorker> logger, IHostApplicationLifetime applicationLifetime, AmineContentCalibrationContext context, ImageStorageService imageStorageService)
|
||||
{
|
||||
_logger = logger;
|
||||
_applicationLifetime = applicationLifetime;
|
||||
@@ -85,7 +85,7 @@ public partial class Program
|
||||
builder.Services.AddAmineContentCalibrationContext(builder.Configuration);
|
||||
builder.Services.AddImageStorageService(new DirectoryInfo("images"));
|
||||
|
||||
builder.Services.AddHostedService<ImagesStorateClearWorker>();
|
||||
builder.Services.AddHostedService<ImagesStorageClearWorker>();
|
||||
|
||||
var host = builder.Build();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user