Coverage for src/qdrant_loader_mcp_server/main.py: 80%
5 statements
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-20 10:15 +0000
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-20 10:15 +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()