remove some leftover code

This commit is contained in:
りき萌 2024-08-24 20:09:52 +02:00
parent 7e01c0ee7a
commit 7f78d0ce1b
4 changed files with 3 additions and 6 deletions

View file

@ -1,6 +1,7 @@
use std::{
collections::{HashSet, VecDeque},
sync::Arc,
time::Duration,
};
use axum::{
@ -20,8 +21,9 @@ use serde::{Deserialize, Serialize};
use tokio::{
select,
sync::{mpsc, oneshot},
time::interval,
};
use tracing::{error, info, instrument};
use tracing::{error, instrument};
use crate::{
haku::{Haku, Limits},

View file

@ -7,7 +7,6 @@ use std::{
use api::Api;
use axum::Router;
use color_eyre::owo_colors::OwoColorize;
use config::Config;
use copy_dir::copy_dir;
use eyre::Context;