bestool 1.6.1

BES Deployment tooling
Documentation
1
2
3
4
5
6
7
8
9
pub use algae_cli::cli::protect::{self, ProtectArgs};
use miette::Result;

use super::CryptoArgs;
use crate::actions::Context;

pub async fn run(ctx: Context<CryptoArgs, ProtectArgs>) -> Result<()> {
	protect::run(ctx.args_sub).await
}