runique 2.0.1

A Django-inspired web framework for Rust with ORM, templates, and comprehensive security middleware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Macros du framework — admin, BDD (objects), contexte Tera, formulaires, routeur, templates.
pub mod admin;
pub mod bdd;
pub mod context;
pub mod forms;
pub mod routeur;
pub mod template;

pub use routeur::RouterExt;
pub use routeur::register_url::{
    add_urls, register_name_url, register_pending, reverse, reverse_with_parameters,
};