1
0
mirror of https://github.com/actix/examples synced 2025-06-26 09:17:41 +02:00

chore: remove redundant imports

This commit is contained in:
Rob Ede
2024-02-20 03:29:10 +00:00
parent dfde2ea718
commit bfed118301
8 changed files with 6 additions and 9 deletions

View File

@ -2,7 +2,6 @@ use actix_web::{
test::{call_and_read_body, call_and_read_body_json, init_service, TestRequest},
web::Bytes,
};
use mongodb::Client;
use super::*;

View File

@ -16,7 +16,7 @@ use std::io;
use actix_web::{middleware, web, App, Error as AWError, HttpResponse, HttpServer};
use futures_util::future::join_all;
use r2d2_sqlite::{self, SqliteConnectionManager};
use r2d2_sqlite::SqliteConnectionManager;
mod db;
use db::{Pool, Queries};