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

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

from .src import Toolbox
from .src.CloudSync.SyncOrchestrator import SyncOrchestrator


def getMetaData():
    return {}


def register(app):
    return {
        "extension": [Toolbox.Toolbox(app), SyncOrchestrator(app)]
    }