1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//! `datapress-core` — shared types used by every backend. //! //! Backend-agnostic pieces: configuration parsing, error types, request / //! response models, schema description, and admin-token auth. pub mod admin; #[cfg(feature = "auth")] pub mod auth; pub mod backend; pub mod banner; pub mod config; #[cfg(feature = "docs")] pub mod docs; pub mod errors; #[cfg(feature = "explorer")] pub mod explorer; pub mod handlers; pub mod models; pub mod schema; pub mod server; #[cfg(feature = "swagger")] pub mod swagger; pub mod timeout;