Skip to main content

wowlab_sentinel/http/routes/
favicon.rs

1use axum::{http::header, response::IntoResponse};
2
3pub(super) async fn handler() -> impl IntoResponse {
4    (
5        [(header::CONTENT_TYPE, "image/x-icon")],
6        include_bytes!("favicon.ico").as_slice(),
7    )
8}