Cura/__init__.py
Jaime van Kessel 763206af32 Initial commit
2016-02-10 13:29:17 +01:00

21 lines
541 B
Python

# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.
from . import WifiOutputDevicePlugin
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
return {
"plugin": {
"name": "Wifi connection",
"author": "Ultimaker",
"description": catalog.i18nc("Wifi connection", "Wifi connection"),
"api": 2
}
}
def register(app):
return { "output_device": WifiOutputDevicePlugin.WifiOutputDevicePlugin() }