reinhardt-web 0.1.0-rc.28

A full-stack API framework for Rust, inspired by Django and Django REST Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Configuration and settings module.
//!
//! This module provides access to the Reinhardt configuration system,
//! including settings management and CLI utilities.
//!
//! # Examples
//!
//! ```rust,ignore
//! # #[cfg(feature = "conf")]
//! use reinhardt::conf::Settings;
//!
//! # #[cfg(feature = "conf")]
//! let settings = Settings::default();
//! ```

#[cfg(feature = "conf")]
pub use reinhardt_conf::*;