cognee/cognee-mcp/mcpcognee/__init__.py
2024-12-14 12:14:04 +01:00

14 lines
254 B
Python

import asyncio
from . import server
def main():
"""Main entry point for the package."""
asyncio.run(server.main())
# Optionally expose other important items at package level
__all__ = ['main', 'server']
if __name__ == "__main__":
main()