1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages
DocForge2/src/docforge/adapters/__init__.py

16 lines
349 B
Python
Raw Normal View History

"""Repository-owned reference adapters built on the public adapter SDK."""
from .python import (
PYTHON_ADAPTER_VERSION,
PYTHON_EXTRACTOR_VERSION,
PythonReferenceAdapter,
PythonUnsupportedFact,
)
__all__ = [
"PYTHON_ADAPTER_VERSION",
"PYTHON_EXTRACTOR_VERSION",
"PythonReferenceAdapter",
"PythonUnsupportedFact",
]