introspection
This commit is contained in:
16
docforge/model/__init__.py
Normal file
16
docforge/model/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user