- Rename docforge.loader → docforge.loaders and docforge.model → docforge.models - Update all imports, type stubs, CLI, tests, and documentation references - Align MkDocs navigation and docforge.nav.yml with new package structure - Adjust module docstrings and comments for consistency with pluralized naming
10 lines
147 B
Python
10 lines
147 B
Python
from .project import Project
|
|
from .module import Module
|
|
from .object import DocObject
|
|
|
|
__all__ = [
|
|
"Project",
|
|
"Module",
|
|
"DocObject",
|
|
]
|