Coverage for src / qdrant_loader_mcp_server / main.py: 80%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:51 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:51 +0000
1"""Main application entry point for RAG MCP Server."""
3from .cli import cli
6def main():
7 """Main entry point that delegates to the CLI."""
8 cli()
11if __name__ == "__main__":
12 main()