mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-24 13:07:53 +08:00
10 lines
184 B
Python
10 lines
184 B
Python
"""Main entry point for gpt4free MCP server
|
|
|
|
This module provides the main entry point for running the MCP server.
|
|
"""
|
|
|
|
from .server import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|