sphinx-autoapi/autoapi/mappers/__init__.py
2023-03-29 17:30:21 -07:00

12 lines
275 B
Python

from .dotnet import DotNetSphinxMapper
from .python import PythonSphinxMapper
from .go import GoSphinxMapper
from .javascript import JavaScriptSphinxMapper
__all__ = (
"DotNetSphinxMapper",
"PythonSphinxMapper",
"GoSphinxMapper",
"JavaScriptSphinxMapper",
)