fmt imports

This commit is contained in:
Tamo 2024-03-26 19:23:55 +01:00
parent 8f5d9f501a
commit 2e36f069c2
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
use std::num::NonZeroUsize;
use rand::{rngs::StdRng, Rng, SeedableRng};
use rand::rngs::StdRng;
use rand::{Rng, SeedableRng};
use tokio::sync::{mpsc, oneshot};
use crate::error::MeilisearchHttpError;

View File

@ -1,4 +1,6 @@
use std::{num::NonZeroUsize, sync::Arc, time::Duration};
use std::num::NonZeroUsize;
use std::sync::Arc;
use std::time::Duration;
use actix_web::ResponseError;
use meili_snap::snapshot;