mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
14 lines
482 B
Python
14 lines
482 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from . import USBPrinterOutputDeviceManager
|
|
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
|
|
def register(app):
|
|
# We are violating the QT API here (as we use a factory, which is technically not allowed).
|
|
# but we don't really have another means for doing this (and it seems to you know -work-)
|
|
return {"output_device": USBPrinterOutputDeviceManager.USBPrinterOutputDeviceManager(app)}
|