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

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

from . import FirmwareUpdaterMachineAction

def getMetaData():
    return {}

def register(app):
    return { "machine_action": [
        FirmwareUpdaterMachineAction.FirmwareUpdaterMachineAction()
    ]}