opendev-web 0.1.4

Web backend (axum + WebSocket) for OpenDev AI coding agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Axum-based web server for the OpenDev AI coding assistant.
//!
//! Provides:
//! - REST API routes (auth, config, sessions, chat)
//! - WebSocket handler for real-time communication
//! - Shared application state
//! - Static file serving for the SPA frontend

pub mod error;
pub mod protocol;
pub mod routes;
pub mod server;
pub mod state;
pub mod websocket;