mirror of
https://github.com/fuergaosi233/claude-code-proxy.git
synced 2025-07-26 20:20:31 +03:00
13 lines
241 B
Python
13 lines
241 B
Python
#!/usr/bin/env python3
|
|
"""Start Claude Code Proxy server."""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add src to Python path
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
|
|
|
from src.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |