dawarich/app/jobs/cache/cleaning_job.rb
2025-07-27 01:08:29 +02:00

9 lines
138 B
Ruby

# frozen_string_literal: true
class Cache::CleaningJob < ApplicationJob
queue_as :cache
def perform
Cache::Clean.call
end
end