Files
doc-forge/docforge/model/__init__.py

17 lines
301 B
Python

"""
Core documentation model for doc-forge.
These classes form the renderer-agnostic, introspection-derived
representation of Python documentation.
"""
from .project import Project
from .module import Module
from .object import DocObject
__all__ = [
"Project",
"Module",
"DocObject",
]