tiny_web/sys/
mod.rs

1/// Web engine.
2pub mod action;
3
4/// Application management.
5pub mod app;
6
7/// Cache system.
8pub mod cache;
9
10/// Work with databases.
11pub mod dbs;
12
13/// User session.
14pub mod session;
15
16/// Launching the application.
17pub mod go;
18
19/// Template maker.
20pub mod html;
21
22/// Init parameters.
23pub mod init;
24
25/// Multi lang system (i18n).
26pub mod lang;
27
28/// Writing short messages about the system status in the message log.
29pub mod log;
30
31/// Main worker to run web engine.
32pub mod worker;
33
34/// A set of web protocols.
35pub mod workers;
36
37/// Temp files.
38pub mod file;
39
40/// Send mail functions.
41pub mod mail;
42
43/// Data type.
44pub mod data;
45
46/// Request data.
47pub mod request;
48
49/// Response answer.
50pub mod response;
51
52/// Route
53pub mod route;
54
55/// Tool
56pub mod tool;