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

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

from . import ModelChecker


def getMetaData():
    return {}

def register(app):
    return { "extension": ModelChecker.ModelChecker() }