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

12 lines
197 B
Ruby

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