pub mod handlers { use color_eyre::Result; use warp::{Reply, Rejection, http::Response}; use crate::templates::{self, Html, RenderRucte}; pub async fn index() -> Result { Response::builder() .html(|o| templates::index_html(o)) } }