ccs-proxy 0.1.1

Local logging reverse-proxy + dashboard for Claude Code / Codex traffic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod routes;
pub mod stream;
pub mod ui;

use crate::AppState;
use axum::Router;

pub fn build_api_app(state: AppState) -> Router {
    Router::new()
        .merge(routes::router())
        .merge(ui::router())
        .with_state(state)
}