Fatal broke (refactor)

This commit is contained in:
2024-07-14 21:15:00 +03:00
parent 6cd6b12630
commit 9ef4176091
10 changed files with 131 additions and 133 deletions

4
src/url/recover.rs Normal file
View File

@ -0,0 +1,4 @@
pub fn recover() -> (String, StatusCode, HeaderValue) {
let restype: HeaderValue = "text/html".parse().unwrap();
(build_html(RECOVER_HTML), StatusCode::OK, restype)
}