chore: cleanup imports

This commit is contained in:
Noa Aarts 2024-07-12 19:01:56 +02:00
parent 890e109e8d
commit 350b0911ff

View file

@ -3,14 +3,14 @@
use std::{ use std::{
cell::SyncUnsafeCell, cell::SyncUnsafeCell,
io::{self, Cursor, Error, ErrorKind}, io::{self, Error, ErrorKind},
iter::once, iter::once,
sync::Arc, sync::Arc,
time::Duration, time::Duration,
}; };
use axum::{http::StatusCode, routing::get, Router}; use axum::{routing::get, Router};
use image::{GenericImage, GenericImageView, Rgb, Rgba}; use image::{GenericImageView, Rgb};
use tokio::{ use tokio::{
io::{AsyncReadExt, AsyncWriteExt, BufReader, BufWriter}, io::{AsyncReadExt, AsyncWriteExt, BufReader, BufWriter},
net::TcpListener, net::TcpListener,