Add a simple daily backup module

This commit is contained in:
Greg Burri 2025-03-29 23:59:48 +01:00
parent b8a8af3979
commit d22617538e
6 changed files with 133 additions and 24 deletions

View file

@ -1,7 +1,7 @@
use axum::{
body::Bytes,
extract::{FromRequest, Request},
http::{header, StatusCode},
http::{StatusCode, header},
response::{IntoResponse, Response},
};
use serde::de::DeserializeOwned;
@ -35,7 +35,7 @@ where
return Err(
ron_utils::ron_error(StatusCode::BAD_REQUEST, "No content type given")
.into_response(),
)
);
}
}