__init__.py 461 B

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