mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-24 13:39:05 +08:00
15 lines
391 B
Python
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()
|