runique 1.1.25

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
13
pub mod app;
pub mod router;
pub mod security;
pub mod server;
pub mod settings;
pub mod static_files;

pub use app::*;
pub use router::*;
pub use security::*;
pub use server::*;
pub use settings::*;
pub use static_files::*;