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

__init__.py « PostProcessingPlugin « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8064d1132ab0df50c93afe5f8845ce8321262684 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V.
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.

from . import PostProcessingPlugin


def getMetaData():
    return {}

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