17 lines
301 B
Python
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",
|
|
]
|