__init__.py 390 B

1234567891011121314151617
  1. # Copyright (c) 2021 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from .Marketplace import Marketplace
  4. def getMetaData():
  5. """
  6. Extension-type plug-ins don't have any specific metadata being used by Cura.
  7. """
  8. return {}
  9. def register(app):
  10. """
  11. Register the plug-in object with Uranium.
  12. """
  13. return { "extension": Marketplace() }