8 lines
207 B
Python
8 lines
207 B
Python
|
|
"""Project-scoped documentation retrieval with explicit authority boundaries."""
|
||
|
|
|
||
|
|
from .errors import DocForgeError
|
||
|
|
from .project import Project
|
||
|
|
|
||
|
|
__all__ = ["DocForgeError", "Project"]
|
||
|
|
__version__ = "0.1.0"
|