__init__.py 380 B

123456789101112
  1. """MakerWorld model provider package.
  2. Exports the provider instance the registry consumes; the implementation lives
  3. in the sibling modules (``service``, ``http``, ``url``, ``errors``, ``auth``).
  4. """
  5. from backend.app.services.model_providers.makerworld.provider import (
  6. MakerWorldProvider,
  7. makerworld_provider,
  8. )
  9. __all__ = ["MakerWorldProvider", "makerworld_provider"]