rejoice 0.9.2

A simple and delightful little web framework for Rust
Documentation
mod app;
pub mod codegen;
#[cfg(feature = "sqlite")]
pub mod db;
pub mod env;
pub mod html;
mod island;

#[doc(hidden)]
pub use dotenvy_macro;

pub use app::App;
pub use axum::extract::{Path, State};
pub use axum::{Router, routing};
pub use island::island_fn;
use maud::Markup;
pub use serde_json::json;

/// Read an environment variable at compile time from .env file.
/// Re-exports dotenvy_macro::dotenv.
#[macro_export]
macro_rules! env {
    ($key:expr) => {
        $crate::dotenvy_macro::dotenv!($key)
    };
}

/// Children passed to a layout component.
/// Use this in your layout function signature and render with `(children)` in Maud.
pub type Children = Markup;

/// Include the generated routes and create_router() function.
/// Call this at the top level of your main.rs.
///
/// Usage:
/// - `routes!()` - for apps without state
/// - `routes!(AppState)` - for apps with custom state type
#[macro_export]
macro_rules! routes {
    () => {
        type __RejoiceState = ();
        include!(concat!(env!("OUT_DIR"), "/routes_generated.rs"));
    };
    ($state:ty) => {
        type __RejoiceState = $state;
        include!(concat!(env!("OUT_DIR"), "/routes_generated.rs"));
    };
}