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
pub mod register;

use axum::Router;
use axum::routing::post;

pub fn routes() -> Router {
    Router::new().route("/", post(register::handler))
}