__init__.py 423 B

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