mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-11 19:10:58 +00:00
12 lines
275 B
Python
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",
|
|
)
|