mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
19 lines
508 B
Python
19 lines
508 B
Python
#Shoopdawoop
|
|
from . import CuraEngineBackend
|
|
|
|
from UM.i18n import i18nCatalog
|
|
catalog = i18nCatalog('cura')
|
|
|
|
def getMetaData():
|
|
return {
|
|
'type': 'backend',
|
|
'plugin': {
|
|
'name': "CuraEngine Backend",
|
|
'author': 'Arjen Hiemstra',
|
|
'description': catalog.i18nc('CuraEngine backend plugin description', 'Provides the link to the CuraEngine slicing backend')
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
return { "backend": CuraEngineBackend.CuraEngineBackend() }
|
|
|