Stubbed out tasks system for installers

This commit is contained in:
2021-11-15 10:15:04 -06:00
parent 7fd38cd92d
commit dae620ccbd
14 changed files with 287 additions and 60 deletions

View File

@@ -0,0 +1,11 @@
class W3DHub
class ApplicationManager
class Importer < Task
def initialize(app_id, channel, path)
super(app_id, channel)
@path = path
end
end
end
end