mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 13:03:59 -06:00
Introduce the SyncOrchestrator
CURA-6983
This commit is contained in:
parent
6eab5e2492
commit
1a816ad010
8 changed files with 84 additions and 21 deletions
|
@ -2,7 +2,8 @@
|
|||
# Toolbox is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from .src import Toolbox
|
||||
from .src.SubscriptionChecker import SubscriptionChecker
|
||||
from plugins.Toolbox.src.CloudSync.CloudPackageChecker import CloudPackageChecker
|
||||
from .src.CloudSync.SyncOrchestrator import SyncOrchestrator
|
||||
|
||||
|
||||
def getMetaData():
|
||||
|
@ -11,6 +12,5 @@ def getMetaData():
|
|||
|
||||
def register(app):
|
||||
return {
|
||||
"extension": Toolbox.Toolbox(app),
|
||||
"subscription_checker": SubscriptionChecker(app)
|
||||
"extension": [Toolbox.Toolbox(app), SyncOrchestrator(app)]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue