use askama::Template;
use axum::response::IntoResponse;
use crate::BUILD_INFO;
#[derive(Template)]
#[template(path = "home.html")]
struct HomeTemplate<'a> {
version: &'a str,
build_time: &'a str,
build_sha: &'static str,
profiling: bool,
}
pub async fn handle_home(profiling: bool) -> impl IntoResponse {
mz_http_util::template_response(HomeTemplate {
version: BUILD_INFO.version,
build_time: BUILD_INFO.time,
build_sha: BUILD_INFO.sha,
profiling,
})
}
mz_http_util::make_handle_static!(
include_dir::include_dir!("$CARGO_MANIFEST_DIR/src/http/static"),
"src/http/static",
"src/http/static-dev"
);