__init__.py 415 B

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