mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 18:35:12 +00:00
9 lines
160 B
Ruby
9 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RefreshCDNStatsJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform
|
|
CDNStatsService.refresh_global_stats!
|
|
end
|
|
end
|