mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Added CuraEngineBackend plugin
This commit is contained in:
commit
71bbe1ef7e
2 changed files with 13 additions and 0 deletions
5
CuraEngineBackend.py
Normal file
5
CuraEngineBackend.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from Cura.Backend.Backend import Backend
|
||||||
|
|
||||||
|
class CuraEngineBackend(Backend):
|
||||||
|
def __init__(self):
|
||||||
|
super(CuraEngineBackend,self).__init__()
|
8
__init__.py
Normal file
8
__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#Shoopdawoop
|
||||||
|
from plugins.CuraEngineBackend import CuraEngineBackend
|
||||||
|
|
||||||
|
def getMetaData():
|
||||||
|
return { "name": "CuraBackend", "type": "Backend" }
|
||||||
|
|
||||||
|
def register(app):
|
||||||
|
app.setBackend(CuraEngineBackend())
|
Loading…
Add table
Add a link
Reference in a new issue