mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-07-03 14:05:26 +02:00
16 lines
351 B
Python
16 lines
351 B
Python
"""
|
|
Claude Code Proxy - Entry Point
|
|
|
|
Minimal entry point that imports the app from the api module.
|
|
Run with: uv run uvicorn server:app --host 0.0.0.0 --port 8082
|
|
"""
|
|
|
|
from api.app import app, create_app
|
|
|
|
__all__ = ["app", "create_app"]
|
|
|
|
if __name__ == "__main__":
|
|
import uvicorn
|
|
|
|
uvicorn.run(app, host="0.0.0.0", port=8082, log_level="debug")
|