LANCommander/LANCommander.Server/Startup/Thumbnails.cs

14 lines
323 B
C#
Raw Permalink Normal View History

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)
{
//BackgroundJob.Enqueue<GenerateThumbnailsJob>(x => x.ExecuteAsync());
2025-03-11 21:21:16 -05:00
return app;
}
}