introspection

This commit is contained in:
2026-01-20 20:24:22 +05:30
parent c910da9d14
commit 102ea4e215
26 changed files with 525 additions and 0 deletions

15
docforge/__init__.py Normal file
View File

@@ -0,0 +1,15 @@
"""
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 . import model
__all__ = [
"GriffeLoader",
"model",
]