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: 5f4d443729b8fd5f127b4ebfd1bed6e0d7408226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2018 Ultimaker B.V.
# This example is released under the terms of the AGPLv3 or higher.

from . import ModelChecker

from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("cura")


def getMetaData():
    return {}

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