mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 08:14:22 +08:00

This plug-in will be a complete re-write of the previous Toolbox plug-in. It's intended to solve some of the inherent architectural problems with the Toolbox. We're calling it Marketplace now as well. Contributes to issue CURA-8556.
18 lines
390 B
Python
18 lines
390 B
Python
# 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() }
|