├── app/ │ ├── __init__.py # Global logging init (INFO level) │ ├── main.py # FastAPI application entry point │ ├── config.py # Environment-specific settings (dev/test/prod) │ └── routers/ # API route ...
This project is a WebSocket service that supports both HTTP and HTTPS protocols, enabling real-time communication between clients and servers. The service is highly configurable via a JSON file or a ...