2025-03-11 21:21:16 -05:00
|
|
|
using Hangfire;
|
|
|
|
|
using LANCommander.Server.Jobs.Background;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Server.Startup;
|
|
|
|
|
|
|
|
|
|
public static class Thumbnails
|
|
|
|
|
{
|
|
|
|
|
public static WebApplication GenerateThumbnails(this WebApplication app)
|
|
|
|
|
{
|
2025-03-24 00:19:33 -05:00
|
|
|
//BackgroundJob.Enqueue<GenerateThumbnailsJob>(x => x.ExecuteAsync());
|
2025-03-11 21:21:16 -05:00
|
|
|
|
|
|
|
|
return app;
|
|
|
|
|
}
|
|
|
|
|
}
|