runique 2.0.0

A Django-inspired web framework for Rust with ORM, templates, and comprehensive security middleware
Documentation
1
2
3
4
5
6
7
8
//! Admin reload daemon — hot-generates `admin.rs` from the `admin!` macro.
pub(crate) mod generator;
pub(crate) mod parser;
pub(crate) mod watcher;

pub(crate) use generator::generate;
pub(crate) use parser::parse_admin_file;
pub(crate) use watcher::watch;