Files
7000pctAUTO 6433ac68d3
Some checks failed
CI / test (push) Has been cancelled
Add generators and parsers modules
2026-01-29 16:51:52 +00:00

17 lines
363 B
Python

"""Parsers module for code-doc-cli."""
from .base import Parser, DocElement
from .python_parser import PythonParser
from .typescript_parser import TypeScriptParser
from .go_parser import GoParser
from .registry import ParserRegistry
__all__ = [
"Parser",
"DocElement",
"PythonParser",
"TypeScriptParser",
"GoParser",
"ParserRegistry",
]