Files
cowork-local/mcp_servers/project_context_server.py
T
2026-08-20 20:50:37 +07:00

10 lines
253 B
Python

"""Stable module entry point for ``python -m cowork_local.mcp_servers.project_context_server``."""
from .project_context.server import build_server, dispatch, main
__all__ = ["build_server", "dispatch", "main"]
if __name__ == "__main__":
main()