mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-21 20:19:32 +08:00
8 lines
149 B
Python
8 lines
149 B
Python
from . import LayerView
|
|
|
|
def getMetaData():
|
|
return { "name": "LayerView", "type": "View" }
|
|
|
|
def register(app):
|
|
return LayerView.LayerView()
|