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
//! Core framework types and utilities module.
//!
//! This module provides access to core types, exception handling,
//! signals, macros, security utilities, and validators.
//!
//! # Examples
//!
//! ```rust,ignore
//! # #[cfg(feature = "core")]
//! use reinhardt::core::exception::Error;
//! # #[cfg(feature = "core")]
//! use reinhardt::core::signals::{Signal, pre_save};
//! ```

#[cfg(feature = "core")]
pub use reinhardt_core::*;