Files
AobaV2/AobaServer/Services/DebugService.cs
T
Amatsugu e81d432b1f
Build and Push Image / build-and-push (push) Failing after 4m14s
added missing thumbnail deletion on media delete
2026-05-02 13:42:52 -04:00

14 lines
330 B
C#

using AobaCore.Models;
using AobaCore.Services;
namespace AobaServer.Services;
public class DebugService(AobaService aobaService, ThumbnailService thumbnailService) : BackgroundService
{
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
//todo: clean up orphaned thumbnails
}
}