Optimized password hash errors

This commit is contained in:
2025-02-14 12:31:45 +01:00
parent 1e2247abe2
commit 701d430742
8 changed files with 28 additions and 55 deletions

View File

@@ -1,11 +1,6 @@
use std::collections::HashMap;
use axum::{
extract::State,
http::HeaderMap,
Json,
};
use itertools::Itertools;
use axum::{extract::State, http::HeaderMap, Json};
use sqlx::PgPool;
use crate::{
@@ -143,7 +138,6 @@ pub struct MigrationStore {
pub count: u32,
}
impl Row {
fn from_csv_many(input: &str) -> Result<Vec<Self>, csv::Error> {
let mut rdr = csv::ReaderBuilder::new()