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

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

from . import MachineSettingsAction


def getMetaData():
    return {}

def register(app):
    return { "machine_action": MachineSettingsAction.MachineSettingsAction() }