//! Inertia.js integration for Ferro framework.
//!
//! This module provides the integration between the framework-agnostic
//! `ferro-inertia` crate and the Ferro framework's HTTP types.
//!
//! # Example
//!
//! ```rust,ignore
//! use ferro_rs::{Inertia, Request, Response, InertiaProps};
//!
//! #[derive(InertiaProps)]
//! pub struct HomeProps {
//! pub title: String,
//! }
//!
//! pub async fn index(req: Request) -> Response {
//! Inertia::render(&req, "Home", HomeProps {
//! title: "Welcome".into(),
//! })
//! }
//! ```
pub use InertiaConfig;
pub use ;
pub use InertiaResponse;
// Re-export core types from ferro-inertia for advanced usage
pub use ;
// Deprecated exports for backward compatibility
pub use ;