Merge branch 'feat/meta-interface' of https://git.cscherr.de/PlexSheep/wooly-vault into feat/meta-interface
cargo devel CI / cargo CI (push) Failing after 1m26s Details

This commit is contained in:
Christoph J. Scherr 2024-09-08 03:05:32 +02:00
commit b3d542327b
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<()> {