添加 __init__.py
This commit is contained in:
22
__init__.py
Normal file
22
__init__.py
Normal 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'
|
||||
]
|
Reference in New Issue
Block a user