1234567891011121314151617 |
- from .CloudSync.SyncOrchestrator import SyncOrchestrator
- from .Marketplace import Marketplace
- def getMetaData():
- """
- Extension-type plug-ins don't have any specific metadata being used by Cura.
- """
- return {}
- def register(app):
- """
- Register the plug-in object with Uranium.
- """
- return { "extension": [SyncOrchestrator(app), Marketplace()] }
|