this/server/
mod.rs

1//! Server module for building HTTP servers with auto-registered routes
2//!
3//! This module provides a `ServerBuilder` that automatically registers:
4//! - CRUD routes for all entities declared in modules
5//! - Link routes for bidirectional entity relationships
6//! - Introspection routes for API discovery
7
8pub mod builder;
9pub mod entity_registry;
10pub mod router;
11
12pub use builder::ServerBuilder;
13pub use entity_registry::{EntityDescriptor, EntityRegistry};