Files
AobaV2/AobaServer/Services/DebugService.cs
T
Amatsugu 73236e1fde
Build and Push Image / build-and-push (push) Successful in 4m52s
remove debug service
2026-05-01 14:58:09 -04:00

13 lines
290 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)
{
}
}