__init__.py 324 B

123456789101112131415
  1. # Copyright (c) 2015 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. #Shoopdawoop
  4. from . import CuraEngineBackend
  5. from UM.i18n import i18nCatalog
  6. catalog = i18nCatalog("cura")
  7. def getMetaData():
  8. return {}
  9. def register(app):
  10. return { "backend": CuraEngineBackend.CuraEngineBackend() }