Files
wehub-resource-sync db1d565b64
Integration Tests / melodic (push) Has been cancelled
Integration Tests / noetic (push) Has been cancelled
Integration Tests / humble (push) Has been cancelled
Integration Tests / jazzy (push) Has been cancelled
Ruff Lint & Format / ruff (push) Has been cancelled
Sync main to develop / Check if sync is needed (push) Has been cancelled
Sync main to develop / Sync main to develop (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:36:23 +08:00

17 lines
396 B
Python

"""Entry point for ROS MCP Server (modular version).
This module provides a simple entry point that imports and runs the main() function
from ros_mcp.main. This is the recommended way to run the server.
Usage:
python server.py
python -m ros_mcp.main
The modular version uses ros_mcp/main.py and ros_mcp/tools/.
"""
from ros_mcp.main import main
if __name__ == "__main__":
main()