mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Refactor cloud sync out of Toolbox.py
CURA-6983
This commit is contained in:
parent
261ecfacc1
commit
71000180fc
4 changed files with 156 additions and 67 deletions
|
@ -2,6 +2,7 @@
|
|||
# Toolbox is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from .src import Toolbox
|
||||
from .src.SubscriptionChecker import SubscriptionChecker
|
||||
|
||||
|
||||
def getMetaData():
|
||||
|
@ -9,4 +10,7 @@ def getMetaData():
|
|||
|
||||
|
||||
def register(app):
|
||||
return {"extension": Toolbox.Toolbox(app)}
|
||||
return {
|
||||
"extension": Toolbox.Toolbox(app),
|
||||
"subscription_checker": SubscriptionChecker(app)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue