1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages
DocForge2/src/docforge/__init__.py

8 lines
195 B
Python
Raw Normal View History

2026-07-22 02:58:51 -04:00
"""Project-scoped documentation retrieval and isolated proposals."""
from .errors import DocForgeError
from .project import Project
__all__ = ["DocForgeError", "Project"]
2026-07-22 02:58:51 -04:00
__version__ = "0.2.0"