Spaces:
Sleeping
Sleeping
File size: 343 Bytes
7f0fa00 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/env python3
"""
Main application entry point for HuggingFace Spaces.
This file serves as the main entry point when deployed to HuggingFace Spaces.
It redirects to the entrypoint module which starts the MCP server.
"""
# Import and run the entrypoint
from entrypoint import main
if __name__ == "__main__":
main()
|