7 lines
139 B
Ruby
7 lines
139 B
Ruby
module Podcasts
|
|
class BustCacheWorker < BustCacheBaseWorker
|
|
def perform(path)
|
|
CacheBuster.bust_podcast(path)
|
|
end
|
|
end
|
|
end
|