//! # Grave
//!
//! A lightweight web framework built on top of [Axum](https://docs.rs/axum)
//! that provides a declarative `app!` macro for defining routes and configuration.
// Macro definitions live in src/macros/
// Re-export axum and tokio so macro-generated code can reference them via `$crate::`.
pub use axum;
pub use tokio;
// Re-export commonly used extractors and response types.
pub use Json;
pub use Router;
pub use Path;
pub use State;
/// Re-export the full extract module for convenience.