dawarich/app/jobs/cache/cleaning_job.rb
2024-12-24 17:01:26 +01:00

9 lines
140 B
Ruby

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