__init__.py 328 B

123456789101112131415
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Toolbox is released under the terms of the LGPLv3 or higher.
  3. from .src import Toolbox
  4. from .src.CloudSync.SyncOrchestrator import SyncOrchestrator
  5. def getMetaData():
  6. return {}
  7. def register(app):
  8. return {
  9. "extension": [Toolbox.Toolbox(app), SyncOrchestrator(app)]
  10. }