diff --git a/src/challenge/mod.rs b/src/challenge/mod.rs index 554f0a5..83ff319 100644 --- a/src/challenge/mod.rs +++ b/src/challenge/mod.rs @@ -3,7 +3,6 @@ //! This module is the core of the Wooly Vault application, as it defines the interface that all //! challenges must implement, and contains the challenge modules themselves. -use anyhow::anyhow; use async_trait::async_trait; use libpt::log::{error, info}; diff --git a/src/lib.rs b/src/lib.rs index 6656693..9233fad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,6 @@ use libpt::log::info; use self::challenge::ChallengeLike; use self::config::Config; -use self::meta::Service; use self::vault::VaultRef; pub mod challenge; diff --git a/src/main.rs b/src/main.rs index 211f7fe..07a805d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,8 +2,8 @@ use anyhow::Result; use clap::Parser; use libpt::log::{debug, info}; +use wooly_vault::start_all; use wooly_vault::{config::Config, vault::Vault}; -use wooly_vault::{select_and_start_single, start_all}; #[tokio::main(flavor = "current_thread")] async fn main() -> Result<()> {