mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 03:04:23 +08:00
11 lines
222 B
Python
11 lines
222 B
Python
# Copyright (c) 2019 fieldOfView
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from . import AMFReader
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
def register(app):
|
|
return {"mesh_reader": AMFReader.AMFReader()}
|