5 lines
169 B
Rust
5 lines
169 B
Rust
pub fn recover() -> (String, StatusCode, HeaderValue) {
|
|
let restype: HeaderValue = "text/html".parse().unwrap();
|
|
(build_html(RECOVER_HTML), StatusCode::OK, restype)
|
|
}
|