mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
14 lines
391 B
Python
14 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()
|