添加 __init__.py

This commit is contained in:
2025-04-16 19:54:42 +08:00
parent b82b4e6066
commit 79f210eff0

22
__init__.py Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Maya MCP (Model Context Protocol) Module
Provides integration between Maya and Windsurf via the Model Context Protocol.
Version: 1.0.0
Author: Virtuos Games
"""
from server import start_server, stop_server, is_server_running
# Initialize global variables
__version__ = "1.0.0"
# Export public functions
__all__ = [
'start_server',
'stop_server',
'is_server_running'
]