generated from PlexSheep/rs-base
automatic cargo CI changes
This commit is contained in:
parent
695edbb563
commit
f55d19ad82
|
@ -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};
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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<()> {
|
||||||
|
|
Loading…
Reference in New Issue