dawarich/app/jobs/cache/cleaning_job.rb

10 lines
138 B
Ruby
Raw Normal View History

2024-12-24 11:01:26 -05:00
# frozen_string_literal: true
class Cache::CleaningJob < ApplicationJob
2025-07-26 19:08:29 -04:00
queue_as :cache
2024-12-24 11:01:26 -05:00
def perform
Cache::Clean.call
end
end