5 lines
103 B
Ruby
5 lines
103 B
Ruby
class LoadArtistJob < Struct.new(:name)
|
|
def perform
|
|
ImportController.importArtist(name)
|
|
end
|
|
end |