mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-05 14:54:33 +08:00
11 lines
271 B
Python
11 lines
271 B
Python
#Shoopdawoop
|
|
from plugins.CuraEngineBackend import CuraEngineBackend
|
|
|
|
def getMetaData():
|
|
return { "name": "CuraBackend", "type": "Backend" }
|
|
|
|
def register(app):
|
|
|
|
engine = CuraEngineBackend()
|
|
app.setBackend(engine)
|
|
#engine.addCommand(TransferMeshCommand()) |