amaters_server/
lib.rs

1//! AmateRS Server Library
2//!
3//! This library exposes server modules for integration testing.
4
5pub mod audit;
6pub mod auth;
7pub mod authz;
8pub mod config;
9pub mod health;
10pub mod metrics;
11pub mod server;
12pub mod service;
13pub mod shutdown;
14pub mod tls_config;
15
16// Re-export error types for convenience
17pub use server::{ServerError, ServerResult};