__init__.py 358 B

1234567891011
  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 { "output_device": UM3OutputDevicePlugin.UM3OutputDevicePlugin(), "machine_action": DiscoverUM3Action.DiscoverUM3Action()}