mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 11:14:21 +08:00
10 lines
269 B
Python
10 lines
269 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()) |