lariv-rs 0.1.0

Compile-time plugin web application framework built on Axum, SeaORM, Maud, and HTMX
Documentation
1
2
3
4
5
6
7
8
9
10
//! HTTP handlers for chat, history, skills, preferences, and WebSocket streaming.
pub mod chat;
pub mod chat_upload;
pub mod history;
pub mod preferences;
pub mod skills;
pub mod ws;

/// Modal opener query (`?name=…&refresh=table-id`).
pub use crate::web::ModalFormQuery as ModalNameQuery;