Bump rust edition & reformat

This commit is contained in:
Andras Schmelczer 2025-01-07 22:25:59 +00:00
parent 13d5b35d1a
commit f4a87d073a
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
15 changed files with 44 additions and 45 deletions

View file

@ -1,18 +1,16 @@
use axum::{
extract::{Path, Query, State},
Json,
};
use axum::extract::{Path, Query, State};
use axum_extra::{
headers::{authorization::Bearer, Authorization},
TypedHeader,
headers::{Authorization, authorization::Bearer},
};
use axum_jsonschema::Json;
use schemars::JsonSchema;
use serde::Deserialize;
use super::{app_state::AppState, auth::auth, responses::FetchLatestDocumentsResponse};
use crate::{
database::models::{VaultId, VaultUpdateId},
errors::{server_error, SyncServerError},
errors::{SyncServerError, server_error},
};
// This is required for aide to infer the path parameter types and names