Files
doc-forge/docforge/__init__.py

20 lines
450 B
Python

"""
doc-forge — renderer-agnostic Python documentation compiler.
At this stage, doc-forge publicly exposes only the Introspection Layer.
All the rendering, exporting, and serving APIs are intentionally private
until their contracts are finalized.
"""
from .loader import GriffeLoader
from .renderers import MkDocsRenderer
from .cli import main
from . import model
__all__ = [
"GriffeLoader",
"MkDocsRenderer",
"model",
"main",
]