Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « Marketplace « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd65062ba6044402edcfe29c017e6ddf278d0662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() }