__init__.py 308 B

12345678910111213
  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. }
  7. def register(app):
  8. return { "machine_action": [
  9. FirmwareUpdaterMachineAction.FirmwareUpdaterMachineAction(),
  10. ]}