__init__.py 390 B

1234567891011121314
  1. # Copyright (c) 2019 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from . import BedLevelMachineAction
  4. from . import UMOUpgradeSelection
  5. def getMetaData():
  6. return {}
  7. def register(app):
  8. return { "machine_action": [
  9. BedLevelMachineAction.BedLevelMachineAction(parent = app),
  10. UMOUpgradeSelection.UMOUpgradeSelection(parent = app)
  11. ]}