Cura/__init__.py
Jaime van Kessel 220562aa05 Bugfixes
2015-03-31 09:59:24 +02:00

15 lines
391 B
Python

from . import USBPrinterManager
def getMetaData():
return {
'type': 'storage_device',
'plugin': {
'name': 'Local File Storage',
'author': 'Jaime van Kessel',
'version': '1.0',
'description': 'Accepts G-Code and sends them to a printer. '
}
}
def register(app):
return USBPrinterManager.USBPrinterManager()