__init__.py 471 B

1234567891011121314151617
  1. # Copyright (c) 2021 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from .CloudSync.SyncOrchestrator import SyncOrchestrator
  4. from .Marketplace import Marketplace
  5. def getMetaData():
  6. """
  7. Extension-type plug-ins don't have any specific metadata being used by Cura.
  8. """
  9. return {}
  10. def register(app):
  11. """
  12. Register the plug-in object with Uranium.
  13. """
  14. return { "extension": [SyncOrchestrator(app), Marketplace()] }