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__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/Marketplace/__init__.py b/plugins/Marketplace/__init__.py
new file mode 100644
index 0000000000..bd65062ba6
--- /dev/null
+++ b/plugins/Marketplace/__init__.py
@@ -0,0 +1,17 @@
+# Copyright (c) 2021 Ultimaker B.V.
+# Cura is released under the terms of the LGPLv3 or higher.
+
+from .Marketplace import Marketplace
+
+def getMetaData():
+ """
+ Extension-type plug-ins don't have any specific metadata being used by Cura.
+ """
+ return {}
+
+
+def register(app):
+ """
+ Register the plug-in object with Uranium.
+ """
+ return { "extension": Marketplace() }