This commit is contained in:
realaravinth
2021-05-08 00:29:19 +05:30
parent 7e0670d1d8
commit 1a381f8efa
12 changed files with 74 additions and 8 deletions

View File

@@ -25,6 +25,9 @@ pub struct Routes {
pub auth: Auth,
pub panel: Panel,
pub errors: Errors,
pub about: &'static str,
pub thanks: &'static str,
pub donate: &'static str,
}
impl Routes {
@@ -36,6 +39,9 @@ impl Routes {
panel,
home,
errors: Errors::new(),
about: "/aboubt",
thanks: "/thanks",
donate: "/donat",
}
}
}