mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-03 09:14:24 +08:00
15 lines
252 B
Python
15 lines
252 B
Python
#Shoopdawoop
|
|
from . import CuraEngineBackend
|
|
|
|
def getMetaData():
|
|
return {
|
|
'type': 'backend',
|
|
'plugin': {
|
|
'name': "CuraEngine Backend"
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
return CuraEngineBackend.CuraEngineBackend()
|
|
|