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

__init__.py « UltimakerMachineActions « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aecb3b0ad637c1e7d6ea80f905a7b18b8c20aad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

from . import BedLevelMachineAction
from . import UMOUpgradeSelection

def getMetaData():
    return {}

def register(app):
    return { "machine_action": [
        BedLevelMachineAction.BedLevelMachineAction(),
        UMOUpgradeSelection.UMOUpgradeSelection()
    ]}