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/Toolbox/__init__.py')
-rw-r--r--plugins/Toolbox/__init__.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/Toolbox/__init__.py b/plugins/Toolbox/__init__.py
deleted file mode 100644
index 51f1b643d0..0000000000
--- a/plugins/Toolbox/__init__.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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)]
- }