arcanum 0.1.2

A simple library to create web applications with a Django inspired interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// # Imports

mod webserver;
mod models;
mod request;
mod response;
mod serve_files;
mod templates;
mod router;

pub use router::Router;
pub use webserver::WebServer;
pub use request::{Request};
pub use response::{Response, ReturnData};
pub use templates::Template;
pub use serve_files::serve_static_file;