what2watch/src/generic_handlers.rs

8 lines
188 B
Rust
Raw Normal View History

2023-05-22 23:57:08 +00:00
use axum::response::{IntoResponse, Redirect};
pub async fn handle_slash_redir() -> impl IntoResponse {
Redirect::temporary("/")
}
pub async fn handle_slash() -> impl IntoResponse {}