zvault_server/lib.rs
1//! `ZVault` HTTP server.
2//!
3//! Wires together the core library, storage backend, and HTTP routes into a
4//! running Axum server. Serves both the JSON API at `/v1/*` and the web UI
5//! at `/`.
6
7pub mod config;
8pub mod error;
9pub mod hardening;
10pub mod middleware;
11pub mod routes;
12pub mod state;