1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use super::auth::routes::Auth;
use super::errors::routes::Errors;
use super::panel::routes::Panel;
pub const ROUTES: Routes = Routes::new();
pub struct Routes {
pub home: &'static str,
pub auth: Auth,
pub panel: Panel,
pub errors: Errors,
pub about: &'static str,
pub thanks: &'static str,
pub donate: &'static str,
pub security: &'static str,
pub privacy: &'static str,
}
impl Routes {
const fn new() -> Routes {
let panel = Panel::new();
let home = panel.home;
Routes {
auth: Auth::new(),
panel,
home,
errors: Errors::new(),
about: "/about",
thanks: "/thanks",
donate: "/donate",
security: "/security",
privacy: "/privacy-policy",
}
}
}