automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-09-08 01:02:06 +00:00 committed by github-actions[bot]
parent 695edbb563
commit f55d19ad82
3 changed files with 1 additions and 3 deletions

View File

@ -3,7 +3,6 @@
//! This module is the core of the Wooly Vault application, as it defines the interface that all //! 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. //! challenges must implement, and contains the challenge modules themselves.
use anyhow::anyhow;
use async_trait::async_trait; use async_trait::async_trait;
use libpt::log::{error, info}; use libpt::log::{error, info};

View File

@ -19,7 +19,6 @@ use libpt::log::info;
use self::challenge::ChallengeLike; use self::challenge::ChallengeLike;
use self::config::Config; use self::config::Config;
use self::meta::Service;
use self::vault::VaultRef; use self::vault::VaultRef;
pub mod challenge; pub mod challenge;

View File

@ -2,8 +2,8 @@ use anyhow::Result;
use clap::Parser; use clap::Parser;
use libpt::log::{debug, info}; use libpt::log::{debug, info};
use wooly_vault::start_all;
use wooly_vault::{config::Config, vault::Vault}; use wooly_vault::{config::Config, vault::Vault};
use wooly_vault::{select_and_start_single, start_all};
#[tokio::main(flavor = "current_thread")] #[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> { async fn main() -> Result<()> {