rejoice 0.3.0

A simple and delightful little web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod app;
pub mod codegen;
pub mod db;
pub mod env;

pub use app::App;
pub use maud::{html, Markup, DOCTYPE};

/// Include the generated routes and create_router() function.
/// Call this at the top level of your main.rs.
#[macro_export]
macro_rules! routes {
    () => {
        include!(concat!(env!("OUT_DIR"), "/routes_generated.rs"));
    };
}