Cura/plugins/CuraDrive/__init__.py
Jaime van Kessel 65183ade0a No longer chache singleton objects
CURA-6005
2019-01-03 16:44:08 +01:00

11 lines
259 B
Python

# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from .src.DrivePluginExtension import DrivePluginExtension
def getMetaData():
return {}
def register(app):
return {"extension": DrivePluginExtension()}