opendev_web/lib.rs
1//! Axum-based web server for the OpenDev AI coding assistant.
2//!
3//! Provides:
4//! - REST API routes (auth, config, sessions, chat)
5//! - WebSocket handler for real-time communication
6//! - Shared application state
7//! - Static file serving for the SPA frontend
8
9pub mod error;
10pub mod protocol;
11pub mod routes;
12pub mod server;
13pub mod state;
14pub mod websocket;