mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 23:34:32 +08:00
16 lines
328 B
Python
16 lines
328 B
Python
# Copyright (c) 2018 Ultimaker B.V.
|
|
# Toolbox is released under the terms of the LGPLv3 or higher.
|
|
|
|
from .src import Toolbox
|
|
from .src.CloudSync.SyncOrchestrator import SyncOrchestrator
|
|
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
|
|
def register(app):
|
|
return {
|
|
"extension": [Toolbox.Toolbox(app), SyncOrchestrator(app)]
|
|
}
|