__init__.py 362 B

1234567891011
  1. # Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V.
  2. # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
  3. from . import PostProcessingPlugin
  4. from UM.i18n import i18nCatalog
  5. catalog = i18nCatalog("cura")
  6. def getMetaData():
  7. return {}
  8. def register(app):
  9. return {"extension": PostProcessingPlugin.PostProcessingPlugin()}