__init__.py 294 B

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