__init__.py 302 B

123456789101112
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from . import FirmwareUpdaterMachineAction
  4. def getMetaData():
  5. return {}
  6. def register(app):
  7. return { "machine_action": [
  8. FirmwareUpdaterMachineAction.FirmwareUpdaterMachineAction()
  9. ]}