Applied isort to properly sort all imports according to PEP8: - Standard library imports first - Third-party imports second - Local imports last - Alphabetical ordering within each group All tests still passing after import reordering.
13 lines
277 B
Python
Executable File
13 lines
277 B
Python
Executable File
"""
|
|
Gemini MCP Server - Entry point for backward compatibility
|
|
This file exists to maintain compatibility with existing configurations.
|
|
The main implementation is now in server.py
|
|
"""
|
|
|
|
import asyncio
|
|
|
|
from server import main
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|