Files
w3dhub_linux_launcher/lib/application_manager/tasks/importer.rb

11 lines
190 B
Ruby

class W3DHub
class ApplicationManager
class Importer < Task
def initialize(app_id, channel, path)
super(app_id, channel)
@path = path
end
end
end
end