├── 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 is an example Play application that shows how to use Play's Websocket API in Java, by showing a series of stock tickers updated using WebSocket. The Websocket API is built on Akka Streams, and so ...