mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
12 lines
225 B
Python
12 lines
225 B
Python
# Copyright (c) 2018 Ultimaker B.V.
|
|
# Toolbox is released under the terms of the LGPLv3 or higher.
|
|
|
|
from .src import Toolbox
|
|
|
|
|
|
def getMetaData():
|
|
return {}
|
|
|
|
|
|
def register(app):
|
|
return {"extension": Toolbox.Toolbox()}
|