Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Marketplace/__init__.py')
-rw-r--r--plugins/Marketplace/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Marketplace/__init__.py b/plugins/Marketplace/__init__.py
index bd65062ba6..ef1beab33e 100644
--- a/plugins/Marketplace/__init__.py
+++ b/plugins/Marketplace/__init__.py
@@ -1,6 +1,6 @@
# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
-
+from .CloudSync.SyncOrchestrator import SyncOrchestrator
from .Marketplace import Marketplace
def getMetaData():
@@ -14,4 +14,4 @@ def register(app):
"""
Register the plug-in object with Uranium.
"""
- return { "extension": Marketplace() }
+ return { "extension": [Marketplace(), SyncOrchestrator(app)] }