ipchat 0.0.0

Chat solution for local networks based on WLAN and Router's IP Addresses
Documentation
1
2
3
4
5
6
7
8
9
10
11
use axum::Extension;
use axum::http::StatusCode;
use tracing::info;

use crate::services::SharedServices;

pub async fn handler(Extension(services): Extension<SharedServices>) -> Result<(), StatusCode> {
    info!(ws_addr=?services.web_socket.addr(), "WebSocket Info.");

    Ok(())
}