mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
9 lines
184 B
Python
9 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()
|