__init__.py 381 B

123456789101112131415
  1. # Copyright (c) 2017 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from .src import DiscoverUM3Action
  4. from .src import UM3OutputDevicePlugin
  5. def getMetaData():
  6. return {}
  7. def register(app):
  8. return {
  9. "output_device": UM3OutputDevicePlugin.UM3OutputDevicePlugin(),
  10. "machine_action": DiscoverUM3Action.DiscoverUM3Action()
  11. }